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

Unified Diff: src/unicode.h

Issue 11397: Fixed bug 129 (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 | « src/jsregexp.h ('k') | src/unicode.cc » ('j') | test/cctest/test-regexp.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/unicode.h
diff --git a/src/unicode.h b/src/unicode.h
index e9b92bfdb6397a4c3a9c517ab4e88ef1bfaa5e1f..86fd49885cff2b2916a6297cabd13dad0860c338 100644
--- a/src/unicode.h
+++ b/src/unicode.h
@@ -84,8 +84,8 @@ class Mapping {
inline CacheEntry(uchar code_point, signed offset)
: code_point_(code_point),
offset_(offset) { }
- uchar code_point_ : 21;
- signed offset_ : 21;
+ uchar code_point_;
+ signed offset_;
static const int kNoChar = (1 << 21) - 1;
};
static const int kSize = size;
« no previous file with comments | « src/jsregexp.h ('k') | src/unicode.cc » ('j') | test/cctest/test-regexp.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698