Title: [112100] trunk/Source/_javascript_Core
Revision
112100
Author
[email protected]
Date
2012-03-26 08:21:37 -0700 (Mon, 26 Mar 2012)

Log Message

Build fix for WinCE after r112039.

* interpreter/Register.h:
(Register): Removed inline keyword from decleration since
            there is an ALWAYS_INLINE at the definition anyway.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (112099 => 112100)


--- trunk/Source/_javascript_Core/ChangeLog	2012-03-26 15:16:38 UTC (rev 112099)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-03-26 15:21:37 UTC (rev 112100)
@@ -1,3 +1,11 @@
+2012-03-26  Patrick Gansterer  <[email protected]>
+
+        Build fix for WinCE after r112039.
+
+        * interpreter/Register.h:
+        (Register): Removed inline keyword from decleration since
+                    there is an ALWAYS_INLINE at the definition anyway.
+
 2012-03-26  Carlos Garcia Campos  <[email protected]>
 
         Unreviewed. Fix make distcheck.

Modified: trunk/Source/_javascript_Core/interpreter/Register.h (112099 => 112100)


--- trunk/Source/_javascript_Core/interpreter/Register.h	2012-03-26 15:16:38 UTC (rev 112099)
+++ trunk/Source/_javascript_Core/interpreter/Register.h	2012-03-26 15:21:37 UTC (rev 112100)
@@ -86,7 +86,7 @@
             return r;
         }
 
-        static inline Register withCallee(JSObject* callee);
+        static Register withCallee(JSObject* callee);
 
     private:
         union {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to