Title: [161317] trunk/Source/_javascript_Core
Revision
161317
Author
[email protected]
Date
2014-01-04 18:15:25 -0800 (Sat, 04 Jan 2014)

Log Message

Use Compiler macros instead of raw "final" and "override"
https://bugs.webkit.org/show_bug.cgi?id=126490

Patch by Yusuke Suzuki <[email protected]> on 2014-01-04
Reviewed by Sam Weinig.

* runtime/JSPromiseReaction.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (161316 => 161317)


--- trunk/Source/_javascript_Core/ChangeLog	2014-01-05 00:28:39 UTC (rev 161316)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-01-05 02:15:25 UTC (rev 161317)
@@ -1,3 +1,12 @@
+2014-01-04  Yusuke Suzuki  <[email protected]>
+
+        Use Compiler macros instead of raw "final" and "override"
+        https://bugs.webkit.org/show_bug.cgi?id=126490
+
+        Reviewed by Sam Weinig.
+
+        * runtime/JSPromiseReaction.cpp:
+
 2014-01-04  Martin Robinson  <[email protected]>
 
         [GTK] [CMake] Improve the way we locate gobject-introspection

Modified: trunk/Source/_javascript_Core/runtime/JSPromiseReaction.cpp (161316 => 161317)


--- trunk/Source/_javascript_Core/runtime/JSPromiseReaction.cpp	2014-01-05 00:28:39 UTC (rev 161316)
+++ trunk/Source/_javascript_Core/runtime/JSPromiseReaction.cpp	2014-01-05 02:15:25 UTC (rev 161317)
@@ -37,7 +37,7 @@
 
 namespace JSC {
 
-class ExecutePromiseReactionMicrotask final : public Microtask {
+class ExecutePromiseReactionMicrotask FINAL : public Microtask {
 public:
     ExecutePromiseReactionMicrotask(VM& vm, JSPromiseReaction* reaction, JSValue argument)
     {
@@ -50,7 +50,7 @@
     }
 
 private:
-    virtual void run(ExecState*) override;
+    virtual void run(ExecState*) OVERRIDE;
 
     Strong<JSPromiseReaction> m_reaction;
     Strong<Unknown> m_argument;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to