Title: [176909] trunk/Source/_javascript_Core
Revision
176909
Author
[email protected]
Date
2014-12-06 13:04:31 -0800 (Sat, 06 Dec 2014)

Log Message

Fix build with newer versions of clang.
rdar://problem/18978716

* ftl/FTLJITCode.h:
Add missing overrides.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (176908 => 176909)


--- trunk/Source/_javascript_Core/ChangeLog	2014-12-06 19:36:35 UTC (rev 176908)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-12-06 21:04:31 UTC (rev 176909)
@@ -1,3 +1,11 @@
+2014-12-06  Anders Carlsson  <[email protected]>
+
+        Fix build with newer versions of clang.
+        rdar://problem/18978716
+
+        * ftl/FTLJITCode.h:
+        Add missing overrides.
+
 2014-12-05  Roger Fong  <[email protected]>
 
         [Win] proj files copying over too many resources..

Modified: trunk/Source/_javascript_Core/ftl/FTLJITCode.h (176908 => 176909)


--- trunk/Source/_javascript_Core/ftl/FTLJITCode.h	2014-12-06 19:36:35 UTC (rev 176908)
+++ trunk/Source/_javascript_Core/ftl/FTLJITCode.h	2014-12-06 21:04:31 UTC (rev 176909)
@@ -72,8 +72,8 @@
     
     CodePtr exitThunks();
     
-    JITCode* ftl();
-    DFG::CommonData* dfgCommon();
+    JITCode* ftl() override;
+    DFG::CommonData* dfgCommon() override;
     
     DFG::CommonData common;
     SegmentedVector<OSRExit, 8> osrExit;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to