Changeset 223142 in webkit


Ignore:
Timestamp:
Oct 10, 2017 2:10:17 PM (7 years ago)
Author:
msaboff@apple.com
Message:

Unreviewed build fix.

Removed unused lambda capture.

  • yarr/YarrPattern.cpp:

(JSC::Yarr::CharacterClassConstructor::appendInverted):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r223125 r223142  
     12017-10-10  Michael Saboff  <msaboff@apple.com>
     2
     3        Unreviewed build fix.
     4
     5        Removed unused lambda capture.
     6
     7        * yarr/YarrPattern.cpp:
     8        (JSC::Yarr::CharacterClassConstructor::appendInverted):
     9
    1102017-10-10  Saam Barati  <sbarati@apple.com>
    211
  • trunk/Source/JavaScriptCore/yarr/YarrPattern.cpp

    r223081 r223142  
    7676    void appendInverted(const CharacterClass* other)
    7777    {
    78         auto addSortedInverted = [this, &other](UChar32 min, UChar32 max,
     78        auto addSortedInverted = [&](UChar32 min, UChar32 max,
    7979            const Vector<UChar32>& srcMatches, const Vector<CharacterRange>& srcRanges,
    8080            Vector<UChar32>& destMatches, Vector<CharacterRange>& destRanges) {
Note: See TracChangeset for help on using the changeset viewer.