Title: [260748] trunk/Source/WebCore
Revision
260748
Author
[email protected]
Date
2020-04-27 03:24:44 -0700 (Mon, 27 Apr 2020)

Log Message

Unreviewed, GTK LTS build fix after r260744
https://bugs.webkit.org/show_bug.cgi?id=211069

* bindings/js/JSDOMBuiltinConstructor.h:
(WebCore::JSDOMBuiltinConstructor<JSClass>::getConstructData):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (260747 => 260748)


--- trunk/Source/WebCore/ChangeLog	2020-04-27 10:00:24 UTC (rev 260747)
+++ trunk/Source/WebCore/ChangeLog	2020-04-27 10:24:44 UTC (rev 260748)
@@ -1,3 +1,11 @@
+2020-04-27  Diego Pino Garcia  <[email protected]>
+
+        Unreviewed, GTK LTS build fix after r260744
+        https://bugs.webkit.org/show_bug.cgi?id=211069
+
+        * bindings/js/JSDOMBuiltinConstructor.h:
+        (WebCore::JSDOMBuiltinConstructor<JSClass>::getConstructData):
+
 2020-04-27  Claudio Saavedra  <[email protected]>
 
         [GTK4] GdkRGBA has float members instead of double

Modified: trunk/Source/WebCore/bindings/js/JSDOMBuiltinConstructor.h (260747 => 260748)


--- trunk/Source/WebCore/bindings/js/JSDOMBuiltinConstructor.h	2020-04-27 10:00:24 UTC (rev 260747)
+++ trunk/Source/WebCore/bindings/js/JSDOMBuiltinConstructor.h	2020-04-27 10:24:44 UTC (rev 260748)
@@ -120,7 +120,7 @@
 
 template<typename JSClass> inline JSC::CallData JSDOMBuiltinConstructor<JSClass>::getConstructData(JSC::JSCell*)
 {
-    CallData constructData;
+    JSC::CallData constructData;
     constructData.type = JSC::CallData::Type::Native;
     constructData.native.function = construct;
     return constructData;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to