Chromium Code Reviews| 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; |