Title: [289173] trunk/Source/_javascript_Core
Revision
289173
Author
[email protected]
Date
2022-02-06 11:25:32 -0800 (Sun, 06 Feb 2022)

Log Message

Unreviewed, follow-up after r289172
https://bugs.webkit.org/show_bug.cgi?id=236180

* runtime/JSGlobalObjectFunctions.cpp:
(JSC::JSC_DEFINE_HOST_FUNCTION):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (289172 => 289173)


--- trunk/Source/_javascript_Core/ChangeLog	2022-02-06 19:17:26 UTC (rev 289172)
+++ trunk/Source/_javascript_Core/ChangeLog	2022-02-06 19:25:32 UTC (rev 289173)
@@ -1,5 +1,13 @@
 2022-02-06  Yusuke Suzuki  <[email protected]>
 
+        Unreviewed, follow-up after r289172
+        https://bugs.webkit.org/show_bug.cgi?id=236180
+
+        * runtime/JSGlobalObjectFunctions.cpp:
+        (JSC::JSC_DEFINE_HOST_FUNCTION):
+
+2022-02-06  Yusuke Suzuki  <[email protected]>
+
         [WTF] Make Bitmap constexpr friendly
         https://bugs.webkit.org/show_bug.cgi?id=236180
 

Modified: trunk/Source/_javascript_Core/runtime/JSGlobalObjectFunctions.cpp (289172 => 289173)


--- trunk/Source/_javascript_Core/runtime/JSGlobalObjectFunctions.cpp	2022-02-06 19:17:26 UTC (rev 289172)
+++ trunk/Source/_javascript_Core/runtime/JSGlobalObjectFunctions.cpp	2022-02-06 19:25:32 UTC (rev 289173)
@@ -553,7 +553,7 @@
 
 JSC_DEFINE_HOST_FUNCTION(globalFuncDecodeURIComponent, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
-    static constexpr auto emptyBitmap;
+    static constexpr Bitmap<256> emptyBitmap;
     return JSValue::encode(decode(globalObject, callFrame->argument(0), emptyBitmap, true));
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to