Title: [120256] trunk/Source/WTF
Revision
120256
Author
[email protected]
Date
2012-06-13 16:25:13 -0700 (Wed, 13 Jun 2012)

Log Message

make sure headers are included only once per file
https://bugs.webkit.org/show_bug.cgi?id=88929

Patch by Arnaud Renevier <[email protected]> on 2012-06-13
Reviewed by Kentaro Hara.

* wtf/FastMalloc.cpp:
* wtf/MathExtras.h:
* wtf/OSAllocator.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (120255 => 120256)


--- trunk/Source/WTF/ChangeLog	2012-06-13 23:07:04 UTC (rev 120255)
+++ trunk/Source/WTF/ChangeLog	2012-06-13 23:25:13 UTC (rev 120256)
@@ -1,3 +1,14 @@
+2012-06-13  Arnaud Renevier  <[email protected]>
+
+        make sure headers are included only once per file
+        https://bugs.webkit.org/show_bug.cgi?id=88929
+
+        Reviewed by Kentaro Hara.
+
+        * wtf/FastMalloc.cpp:
+        * wtf/MathExtras.h:
+        * wtf/OSAllocator.h:
+
 2012-06-13  Benjamin Poulain  <[email protected]>
 
         Implement the simple constructors WTFURL's KURL

Modified: trunk/Source/WTF/wtf/FastMalloc.cpp (120255 => 120256)


--- trunk/Source/WTF/wtf/FastMalloc.cpp	2012-06-13 23:07:04 UTC (rev 120255)
+++ trunk/Source/WTF/wtf/FastMalloc.cpp	2012-06-13 23:25:13 UTC (rev 120256)
@@ -406,13 +406,11 @@
 #else // FORCE_SYSTEM_MALLOC
 
 #include "AlwaysInline.h"
-#include "Assertions.h"
 #include "TCPackedCache.h"
 #include "TCPageMap.h"
 #include "TCSpinLock.h"
 #include "TCSystemAlloc.h"
 #include <algorithm>
-#include <limits>
 #include <pthread.h>
 #include <stdarg.h>
 #include <stddef.h>

Modified: trunk/Source/WTF/wtf/MathExtras.h (120255 => 120256)


--- trunk/Source/WTF/wtf/MathExtras.h	2012-06-13 23:07:04 UTC (rev 120255)
+++ trunk/Source/WTF/wtf/MathExtras.h	2012-06-13 23:25:13 UTC (rev 120256)
@@ -43,13 +43,6 @@
 #include <machine/ieee.h>
 #endif
 
-#if COMPILER(MSVC)
-#if OS(WINCE)
-#include <stdlib.h>
-#endif
-#include <limits>
-#endif
-
 #if OS(QNX)
 // FIXME: Look into a way to have cmath import its functions into both the standard and global
 // namespace. For now, we include math.h since the QNX cmath header only imports its functions

Modified: trunk/Source/WTF/wtf/OSAllocator.h (120255 => 120256)


--- trunk/Source/WTF/wtf/OSAllocator.h	2012-06-13 23:07:04 UTC (rev 120255)
+++ trunk/Source/WTF/wtf/OSAllocator.h	2012-06-13 23:25:13 UTC (rev 120256)
@@ -29,7 +29,6 @@
 #include <algorithm>
 #include <wtf/UnusedParam.h>
 #include <wtf/VMTags.h>
-#include <wtf/VMTags.h>
 
 namespace WTF {
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to