Title: [143306] trunk/Source/WebCore
Revision
143306
Author
[email protected]
Date
2013-02-19 00:23:49 -0800 (Tue, 19 Feb 2013)

Log Message

Unreviewed build fix after r143304.

* bindings/js/JSDOMBinding.h:
(WebCore::argumentOrNull):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143305 => 143306)


--- trunk/Source/WebCore/ChangeLog	2013-02-19 08:21:57 UTC (rev 143305)
+++ trunk/Source/WebCore/ChangeLog	2013-02-19 08:23:49 UTC (rev 143306)
@@ -1,5 +1,12 @@
 2013-02-19  Kentaro Hara  <[email protected]>
 
+        Unreviewed build fix after r143304.
+
+        * bindings/js/JSDOMBinding.h:
+        (WebCore::argumentOrNull):
+
+2013-02-19  Kentaro Hara  <[email protected]>
+
         [V8] Remove redundant usage of MAYBE_MISSING_PARAMETER() macro
         https://bugs.webkit.org/show_bug.cgi?id=109899
 

Modified: trunk/Source/WebCore/bindings/js/JSDOMBinding.h (143305 => 143306)


--- trunk/Source/WebCore/bindings/js/JSDOMBinding.h	2013-02-19 08:21:57 UTC (rev 143305)
+++ trunk/Source/WebCore/bindings/js/JSDOMBinding.h	2013-02-19 08:23:49 UTC (rev 143306)
@@ -256,7 +256,7 @@
 
     inline JSC::JSValue argumentOrNull(JSC::ExecState* exec, int index)
     {
-        return index >= exec->argumentCount() ? JSValue() : exec->argument(index);
+        return index >= exec->argumentCount() ? JSC::JSValue() : exec->argument(index);
     }
 
     const JSC::HashTable* getHashTableForGlobalData(JSC::JSGlobalData&, const JSC::HashTable* staticTable);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to