| Index: src/unicode.h
|
| diff --git a/src/unicode.h b/src/unicode.h
|
| index f1dcad0bcb3c8a5b8430e13ff46f6f5f44d2e62b..6ba61d0e17b2a0b6ff7702c422c38ddf9276318a 100644
|
| --- a/src/unicode.h
|
| +++ b/src/unicode.h
|
| @@ -235,6 +235,7 @@ struct ConnectorPunctuation {
|
| };
|
| struct ToLowercase {
|
| static const int kMaxWidth = 3;
|
| + static const bool kIsToLower = true;
|
| static int Convert(uchar c,
|
| uchar n,
|
| uchar* result,
|
| @@ -242,6 +243,7 @@ struct ToLowercase {
|
| };
|
| struct ToUppercase {
|
| static const int kMaxWidth = 3;
|
| + static const bool kIsToLower = false;
|
| static int Convert(uchar c,
|
| uchar n,
|
| uchar* result,
|
|
|