Title: [126481] trunk/Source/WTF
Revision
126481
Author
[email protected]
Date
2012-08-23 13:57:47 -0700 (Thu, 23 Aug 2012)

Log Message

Roll out part of r126475 that breaks the build with older versions of Clang.

* wtf/FastMalloc.cpp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (126480 => 126481)


--- trunk/Source/WTF/ChangeLog	2012-08-23 20:56:54 UTC (rev 126480)
+++ trunk/Source/WTF/ChangeLog	2012-08-23 20:57:47 UTC (rev 126481)
@@ -1,5 +1,11 @@
 2012-08-23  Mark Rowe  <[email protected]>
 
+        Roll out part of r126475 that breaks the build with older versions of Clang.
+
+        * wtf/FastMalloc.cpp:
+
+2012-08-23  Mark Rowe  <[email protected]>
+
         Make WTF build with the latest version of clang.
 
         Reviewed by Dan Bernstein.

Modified: trunk/Source/WTF/wtf/FastMalloc.cpp (126480 => 126481)


--- trunk/Source/WTF/wtf/FastMalloc.cpp	2012-08-23 20:56:54 UTC (rev 126480)
+++ trunk/Source/WTF/wtf/FastMalloc.cpp	2012-08-23 20:57:47 UTC (rev 126481)
@@ -2469,21 +2469,12 @@
   int32_t cache_size_;
 };
 
-#if COMPILER(CLANG)
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wunused-private-field"
-#endif
-
 // Pad each CentralCache object to multiple of 64 bytes
 class TCMalloc_Central_FreeListPadded : public TCMalloc_Central_FreeList {
  private:
   char pad_[(64 - (sizeof(TCMalloc_Central_FreeList) % 64)) % 64];
 };
 
-#if COMPILER(CLANG)
-#pragma clang diagnostic pop
-#endif
-
 //-------------------------------------------------------------------
 // Global variables
 //-------------------------------------------------------------------
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to