Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: regexp2000/src/parser.cc

Issue 9686: * Small fixes to make experimental branch compile on Windows. (Closed)
Patch Set: Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « regexp2000/src/jsregexp.cc ('k') | regexp2000/src/string-stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()) {
« no previous file with comments | « regexp2000/src/jsregexp.cc ('k') | regexp2000/src/string-stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698