Title: [154381] trunk/Source/WTF
Revision
154381
Author
[email protected]
Date
2013-08-21 02:24:10 -0700 (Wed, 21 Aug 2013)

Log Message

Disable maybe-uninitialized warning in GCC 4.8
https://bugs.webkit.org/show_bug.cgi?id=119835

Reviewed by Anders Carlsson.

Disable the maybe-uninitialized warning.

* wtf/Compiler.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (154380 => 154381)


--- trunk/Source/WTF/ChangeLog	2013-08-21 07:03:24 UTC (rev 154380)
+++ trunk/Source/WTF/ChangeLog	2013-08-21 09:24:10 UTC (rev 154381)
@@ -1,3 +1,14 @@
+2013-08-21  Allan Sandfeld Jensen  <[email protected]>
+
+        Disable maybe-uninitialized warning in GCC 4.8
+        https://bugs.webkit.org/show_bug.cgi?id=119835
+
+        Reviewed by Anders Carlsson.
+
+        Disable the maybe-uninitialized warning.
+
+        * wtf/Compiler.h:
+
 2013-08-20  Alex Christensen  <[email protected]>
 
         Use PlatformArchitecture to distinguish between 32-bit and 64-bit builds on Windows.

Modified: trunk/Source/WTF/wtf/Compiler.h (154380 => 154381)


--- trunk/Source/WTF/wtf/Compiler.h	2013-08-21 07:03:24 UTC (rev 154380)
+++ trunk/Source/WTF/wtf/Compiler.h	2013-08-21 09:24:10 UTC (rev 154381)
@@ -135,6 +135,7 @@
 #if COMPILER(GCC) && !COMPILER(CLANG)
 #if GCC_VERSION_AT_LEAST(4, 8, 0)
 #pragma GCC diagnostic ignored "-Wunused-local-typedefs"
+#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
 #endif
 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
 /* C11 support */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to