Title: [245588] trunk/Source/_javascript_Core
Revision
245588
Author
[email protected]
Date
2019-05-21 11:27:04 -0700 (Tue, 21 May 2019)

Log Message

Unreviewed build fix add UNUSED_PARAM.

* runtime/RegExpInlines.h:
(JSC::PatternContextBufferHolder::PatternContextBufferHolder):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (245587 => 245588)


--- trunk/Source/_javascript_Core/ChangeLog	2019-05-21 17:57:44 UTC (rev 245587)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-05-21 18:27:04 UTC (rev 245588)
@@ -1,3 +1,10 @@
+2019-05-21  Keith Miller  <[email protected]>
+
+        Unreviewed build fix add UNUSED_PARAM.
+
+        * runtime/RegExpInlines.h:
+        (JSC::PatternContextBufferHolder::PatternContextBufferHolder):
+
 2019-05-20  Keith Miller  <[email protected]>
 
         Cleanup Yarr regexp code around paren contexts.

Modified: trunk/Source/_javascript_Core/runtime/RegExpInlines.h (245587 => 245588)


--- trunk/Source/_javascript_Core/runtime/RegExpInlines.h	2019-05-21 17:57:44 UTC (rev 245587)
+++ trunk/Source/_javascript_Core/runtime/RegExpInlines.h	2019-05-21 18:27:04 UTC (rev 245588)
@@ -95,8 +95,9 @@
 #if ENABLE(YARR_JIT_ALL_PARENS_EXPRESSIONS)
         if (needBuffer)
             m_buffer = m_vm.acquireRegExpPatternContexBuffer();
+#else
+        UNUSED_PARAM(needBuffer);
 #endif
-
     }
 
     ~PatternContextBufferHolder()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to