[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 15:12:41 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit b5b9394de2d9b43d0450a1080c7c1f532372ce72
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 29 00:43:42 2010 +0000

    2010-10-28  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Darin Adler.
    
            Include stddef.h unconditionally in Assertions.h
            https://bugs.webkit.org/show_bug.cgi?id=48573
    
            There is no reason to have stddef.h include be MSVC-only.
    
            * wtf/Assertions.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70829 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 8e96be6..20c3f0d 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-10-28  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by Darin Adler.
+
+        Include stddef.h unconditionally in Assertions.h
+        https://bugs.webkit.org/show_bug.cgi?id=48573
+
+        There is no reason to have stddef.h include be MSVC-only.
+
+        * wtf/Assertions.h:
+
 2010-10-28  Herczeg Zoltan  <zherczeg at webkit.org>
 
         Rubber stamped by Csaba Osztrogonác.
diff --git a/JavaScriptCore/wtf/Assertions.h b/JavaScriptCore/wtf/Assertions.h
index c4e015d..2907d04 100644
--- a/JavaScriptCore/wtf/Assertions.h
+++ b/JavaScriptCore/wtf/Assertions.h
@@ -44,9 +44,9 @@
 
 #include "Platform.h"
 
-#if COMPILER(MSVC)
 #include <stddef.h>
-#else
+
+#if !COMPILER(MSVC)
 #include <inttypes.h>
 #endif
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list