| Index: regexp2000/src/parser.cc
|
| diff --git a/regexp2000/src/parser.cc b/regexp2000/src/parser.cc
|
| index 4d2aeba6396d8a31e5afa735ad138e6201d4ef10..c2042bf586136f583f08fb488aba39a547c9bc65 100644
|
| --- a/regexp2000/src/parser.cc
|
| +++ b/regexp2000/src/parser.cc
|
| @@ -3860,7 +3860,7 @@ void* RegExpParser::ParseIntervalQuantifier(int* min_out,
|
|
|
|
|
| // Upper and lower case letters differ by one bit.
|
| -STATIC_CHECK('a'^'A' == 0x20);
|
| +STATIC_CHECK(('a' ^ 'A') == 0x20);
|
|
|
| uc32 RegExpParser::ParseControlLetterEscape(bool* ok) {
|
| if (!has_more()) {
|
|
|