Commit 91654c29 authored by barraclough@apple.com's avatar barraclough@apple.com

2009-04-23 Gavin Barraclough <barraclough@apple.com>

        Not Reviewed.

        Speculative Windows build fix II.

        * yarr/RegexInterpreter.cpp:



git-svn-id: svn://svn.chromium.org/blink/trunk@42805 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 7ec3e5af
2009-04-23 Gavin Barraclough <barraclough@apple.com>
Not Reviewed.
Speculative Windows build fix II.
* yarr/RegexInterpreter.cpp:
2009-04-23 Gavin Barraclough <barraclough@apple.com>
Not Reviewed.
......@@ -92,7 +92,7 @@ public:
return where;
}
unsigned term;
int term;
unsigned matchBegin;
unsigned matchEnd;
uintptr_t frame[1];
......@@ -1077,7 +1077,7 @@ public:
while (true) {
do {
++context->term;
ASSERT(context->term < disjunction->terms.size());
ASSERT(context->term < static_cast<int>(disjunction->terms.size()));
if (disjunction->terms[context->term].type == ByteTerm::TypePatternEnd)
return true;
} while (matchTerm(disjunction, context));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment