Title: [153329] trunk/Source/_javascript_Core
Revision
153329
Author
[email protected]
Date
2013-07-25 09:38:37 -0700 (Thu, 25 Jul 2013)

Log Message

Unreviewed build fix after r153218.

Broke the EFL port build with gcc 4.7.

* interpreter/StackIterator.cpp:
(JSC::printif):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (153328 => 153329)


--- trunk/Source/_javascript_Core/ChangeLog	2013-07-25 16:24:07 UTC (rev 153328)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-07-25 16:38:37 UTC (rev 153329)
@@ -1,3 +1,12 @@
+2013-07-25  Christophe Dumez  <[email protected]>
+
+        Unreviewed build fix after r153218.
+
+        Broke the EFL port build with gcc 4.7.
+
+        * interpreter/StackIterator.cpp:
+        (JSC::printif):
+
 2013-07-25  Julien Brianceau  <[email protected]>
 
         Build fix: add missing #include.

Modified: trunk/Source/_javascript_Core/interpreter/StackIterator.cpp (153328 => 153329)


--- trunk/Source/_javascript_Core/interpreter/StackIterator.cpp	2013-07-25 16:24:07 UTC (rev 153328)
+++ trunk/Source/_javascript_Core/interpreter/StackIterator.cpp	2013-07-25 16:38:37 UTC (rev 153329)
@@ -322,6 +322,7 @@
 #if COMPILER(CLANG) || (COMPILER(GCC) && GCC_VERSION_AT_LEAST(4, 6, 0))
 #pragma GCC diagnostic push
 #pragma GCC diagnostic ignored "-Wformat-nonliteral"
+#pragma GCC diagnostic ignored "-Wmissing-format-attribute"
 #endif
 
     WTF::dataLogFV(format, argList);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to