| Index: src/unicode.h
|
| diff --git a/src/unicode.h b/src/unicode.h
|
| index 42a81824bac3a42941c41ad2550088b2532d424f..a7061745a2a1cd7119be4f0af4838819b665a3de 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,
|
|
|