Title: [278672] trunk/Source/_javascript_Core
Revision
278672
Author
[email protected]
Date
2021-06-09 14:14:37 -0700 (Wed, 09 Jun 2021)

Log Message

Speculative build fix for Win32.
https://bugs.webkit.org/show_bug.cgi?id=226793
rdar://79032803

Reviewed by Saam Barati.

* API/JSCallbackObject.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/API/JSCallbackObject.h (278671 => 278672)


--- trunk/Source/_javascript_Core/API/JSCallbackObject.h	2021-06-09 21:03:57 UTC (rev 278671)
+++ trunk/Source/_javascript_Core/API/JSCallbackObject.h	2021-06-09 21:14:37 UTC (rev 278672)
@@ -30,6 +30,7 @@
 #include "JSObjectRef.h"
 #include "JSValueRef.h"
 #include "JSObject.h"
+#include <wtf/PlatformCallingConventions.h>
 
 namespace JSC {
 
@@ -199,7 +200,7 @@
     void finishCreation(VM&);
 
     static IsoSubspace* subspaceForImpl(VM&, SubspaceAccess);
-    static JSC_HOST_CALL_ATTRIBUTES EncodedJSValue customToPrimitive(JSGlobalObject*, CallFrame*);
+    static EncodedJSValue JSC_HOST_CALL_ATTRIBUTES customToPrimitive(JSGlobalObject*, CallFrame*);
 
     static bool getOwnPropertySlot(JSObject*, JSGlobalObject*, PropertyName, PropertySlot&);
     static bool getOwnPropertySlotByIndex(JSObject*, JSGlobalObject*, unsigned propertyName, PropertySlot&);

Modified: trunk/Source/_javascript_Core/ChangeLog (278671 => 278672)


--- trunk/Source/_javascript_Core/ChangeLog	2021-06-09 21:03:57 UTC (rev 278671)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-06-09 21:14:37 UTC (rev 278672)
@@ -1,3 +1,13 @@
+2021-06-09  Mark Lam  <[email protected]>
+
+        Speculative build fix for Win32.
+        https://bugs.webkit.org/show_bug.cgi?id=226793
+        rdar://79032803
+
+        Reviewed by Saam Barati.
+
+        * API/JSCallbackObject.h:
+
 2021-06-09  Xan Lopez  <[email protected]>
 
         [JSC] Fix incorrect register reuse in 32bit after r278568
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to