Title: [269054] trunk/Source/_javascript_Core
Revision
269054
Author
[email protected]
Date
2020-10-27 10:54:44 -0700 (Tue, 27 Oct 2020)

Log Message

-Wparentheses warning in OptionsList.h
https://bugs.webkit.org/show_bug.cgi?id=218242

Unreviewed, fix warning by adding extra parentheses.

Patch by Michael Catanzaro <[email protected]> on 2020-10-27

* runtime/OptionsList.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (269053 => 269054)


--- trunk/Source/_javascript_Core/ChangeLog	2020-10-27 17:43:33 UTC (rev 269053)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-10-27 17:54:44 UTC (rev 269054)
@@ -1,3 +1,12 @@
+2020-10-27  Michael Catanzaro  <[email protected]>
+
+        -Wparentheses warning in OptionsList.h
+        https://bugs.webkit.org/show_bug.cgi?id=218242
+
+        Unreviewed, fix warning by adding extra parentheses.
+
+        * runtime/OptionsList.h:
+
 2020-10-26  Devin Rousso  <[email protected]>
 
         Web Inspector: console command line API should be exposed to breakpoint conditions/actions

Modified: trunk/Source/_javascript_Core/runtime/OptionsList.h (269053 => 269054)


--- trunk/Source/_javascript_Core/runtime/OptionsList.h	2020-10-27 17:43:33 UTC (rev 269053)
+++ trunk/Source/_javascript_Core/runtime/OptionsList.h	2020-10-27 17:54:44 UTC (rev 269054)
@@ -571,7 +571,7 @@
 };
 
 #define FOR_EACH_JSC_EXPERIMENTAL_OPTION(v) \
-    v(usePrivateClassFields, SupportsFTL | SupportsDFG, "https://bugs.webkit.org/show_bug.cgi?id=212781", "https://bugs.webkit.org/show_bug.cgi?id=212784")
+    v(usePrivateClassFields, (SupportsFTL | SupportsDFG), "https://bugs.webkit.org/show_bug.cgi?id=212781", "https://bugs.webkit.org/show_bug.cgi?id=212784")
 
 constexpr size_t countNumberOfJSCOptions()
 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to