diff options
Diffstat (limited to 'chromium/v8/src/regexp/regexp-compiler.h')
-rw-r--r-- | chromium/v8/src/regexp/regexp-compiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/v8/src/regexp/regexp-compiler.h b/chromium/v8/src/regexp/regexp-compiler.h index a35ffcd01a2..4e7652883c4 100644 --- a/chromium/v8/src/regexp/regexp-compiler.h +++ b/chromium/v8/src/regexp/regexp-compiler.h @@ -96,8 +96,8 @@ class QuickCheckDetails { void set_cannot_match() { cannot_match_ = true; } struct Position { Position() : mask(0), value(0), determines_perfectly(false) {} - uc16 mask; - uc16 value; + uc32 mask; + uc32 value; bool determines_perfectly; }; int characters() { return characters_; } |