Changeset 42805 in webkit for trunk/JavaScriptCore/yarr/RegexInterpreter.cpp
- Timestamp:
- Apr 23, 2009, 6:09:43 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/yarr/RegexInterpreter.cpp
r42800 r42805 93 93 } 94 94 95 unsignedterm;95 int term; 96 96 unsigned matchBegin; 97 97 unsigned matchEnd; … … 1078 1078 do { 1079 1079 ++context->term; 1080 ASSERT(context->term < disjunction->terms.size());1080 ASSERT(context->term < static_cast<int>(disjunction->terms.size())); 1081 1081 if (disjunction->terms[context->term].type == ByteTerm::TypePatternEnd) 1082 1082 return true;
Note:
See TracChangeset
for help on using the changeset viewer.