Ignore:
Timestamp:
Apr 23, 2009, 6:09:43 PM (16 years ago)
Author:
[email protected]
Message:

2009-04-23 Gavin Barraclough <[email protected]>

Not Reviewed.

Speculative Windows build fix II.

  • yarr/RegexInterpreter.cpp:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/yarr/RegexInterpreter.cpp

    r42800 r42805  
    9393        }
    9494
    95         unsigned term;
     95        int term;
    9696        unsigned matchBegin;
    9797        unsigned matchEnd;
     
    10781078            do {
    10791079                ++context->term;
    1080                 ASSERT(context->term < disjunction->terms.size());
     1080                ASSERT(context->term < static_cast<int>(disjunction->terms.size()));
    10811081                if (disjunction->terms[context->term].type == ByteTerm::TypePatternEnd)
    10821082                    return true;
Note: See TracChangeset for help on using the changeset viewer.