Title: [155158] trunk/Source/WTF
- Revision
- 155158
- Author
- [email protected]
- Date
- 2013-09-05 16:13:42 -0700 (Thu, 05 Sep 2013)
Log Message
Fix build with older versions of clang from Xcode.
* wtf/Compiler.h:
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (155157 => 155158)
--- trunk/Source/WTF/ChangeLog 2013-09-05 23:13:13 UTC (rev 155157)
+++ trunk/Source/WTF/ChangeLog 2013-09-05 23:13:42 UTC (rev 155158)
@@ -1,5 +1,11 @@
2013-09-05 Anders Carlsson <[email protected]>
+ Fix build with older versions of clang from Xcode.
+
+ * wtf/Compiler.h:
+
+2013-09-05 Anders Carlsson <[email protected]>
+
Make Vector::uncheckedAppend work with move-only types
https://bugs.webkit.org/show_bug.cgi?id=120799
Modified: trunk/Source/WTF/wtf/Compiler.h (155157 => 155158)
--- trunk/Source/WTF/wtf/Compiler.h 2013-09-05 23:13:13 UTC (rev 155157)
+++ trunk/Source/WTF/wtf/Compiler.h 2013-09-05 23:13:42 UTC (rev 155158)
@@ -57,7 +57,7 @@
/* Disable final on versions of Apple clang earlier than 4.2 to avoid bugs like http://webkit.org/b/119165 */
#if defined(__APPLE__) && (__clang_major__ < 4 || (__clang_major__ == 4 && __clang_minor__ < 2))
-#define WTF_COMPILER_QUIRK_FINAL_IS_BUGGY
+#define WTF_COMPILER_QUIRK_FINAL_IS_BUGGY 1
#endif
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes