Title: [266694] trunk/Source/_javascript_Core
Revision
266694
Author
[email protected]
Date
2020-09-07 01:28:41 -0700 (Mon, 07 Sep 2020)

Log Message

Unreviewed. Remove the build warning below since r266567.
warning: parameter ‘hint’ set but not used [-Wunused-but-set-parameter]

* runtime/JSObject.cpp:
(JSC::callToPrimitiveFunction):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (266693 => 266694)


--- trunk/Source/_javascript_Core/ChangeLog	2020-09-07 06:19:36 UTC (rev 266693)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-09-07 08:28:41 UTC (rev 266694)
@@ -1,3 +1,11 @@
+2020-09-07  Joonghun Park  <[email protected]>
+
+        Unreviewed. Remove the build warning below since r266567.
+        warning: parameter ‘hint’ set but not used [-Wunused-but-set-parameter]
+
+        * runtime/JSObject.cpp:
+        (JSC::callToPrimitiveFunction):
+
 2020-09-06  Darin Adler  <[email protected]>
 
         TextCodec refinements

Modified: trunk/Source/_javascript_Core/runtime/JSObject.cpp (266693 => 266694)


--- trunk/Source/_javascript_Core/runtime/JSObject.cpp	2020-09-07 06:19:36 UTC (rev 266693)
+++ trunk/Source/_javascript_Core/runtime/JSObject.cpp	2020-09-07 08:28:41 UTC (rev 266694)
@@ -2197,6 +2197,8 @@
             break;
         }
         callArgs.append(hintString);
+    } else {
+        UNUSED_PARAM(hint);
     }
     ASSERT(!callArgs.hasOverflowed());
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to