Title: [223142] trunk/Source/_javascript_Core
Revision
223142
Author
msab...@apple.com
Date
2017-10-10 14:10:17 -0700 (Tue, 10 Oct 2017)

Log Message

Unreviewed build fix.

Removed unused lambda capture.

* yarr/YarrPattern.cpp:
(JSC::Yarr::CharacterClassConstructor::appendInverted):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (223141 => 223142)


--- trunk/Source/_javascript_Core/ChangeLog	2017-10-10 21:03:04 UTC (rev 223141)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-10-10 21:10:17 UTC (rev 223142)
@@ -1,3 +1,12 @@
+2017-10-10  Michael Saboff  <msab...@apple.com>
+
+        Unreviewed build fix.
+
+        Removed unused lambda capture.
+
+        * yarr/YarrPattern.cpp:
+        (JSC::Yarr::CharacterClassConstructor::appendInverted):
+
 2017-10-10  Saam Barati  <sbar...@apple.com>
 
         The prototype cache should be aware of the Executable it generates a Structure for

Modified: trunk/Source/_javascript_Core/yarr/YarrPattern.cpp (223141 => 223142)


--- trunk/Source/_javascript_Core/yarr/YarrPattern.cpp	2017-10-10 21:03:04 UTC (rev 223141)
+++ trunk/Source/_javascript_Core/yarr/YarrPattern.cpp	2017-10-10 21:10:17 UTC (rev 223142)
@@ -75,7 +75,7 @@
 
     void appendInverted(const CharacterClass* other)
     {
-        auto addSortedInverted = [this, &other](UChar32 min, UChar32 max,
+        auto addSortedInverted = [&](UChar32 min, UChar32 max,
             const Vector<UChar32>& srcMatches, const Vector<CharacterRange>& srcRanges,
             Vector<UChar32>& destMatches, Vector<CharacterRange>& destRanges) {
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to