Chromium Code Reviews| Index: src/unicode.h |
| diff --git a/src/unicode.h b/src/unicode.h |
| index 9aece253fe41089782fe81c6831e052af215d37c..09f308571348d30193e59196b965136c6905bd68 100644 |
| --- a/src/unicode.h |
| +++ b/src/unicode.h |
| @@ -180,12 +180,10 @@ class Utf8 { |
| struct Uppercase { |
| static bool Is(uchar c); |
| }; |
| -struct Lowercase { |
| - static bool Is(uchar c); |
| -}; |
| struct Letter { |
| static bool Is(uchar c); |
| }; |
| +#ifndef V8_INTL_START |
|
Dan Ehrenberg
2017/06/14 08:22:26
V8_INTL_SUPPORT?
|
| struct V8_EXPORT_PRIVATE ID_Start { |
| static bool Is(uchar c); |
| }; |
| @@ -195,6 +193,7 @@ struct V8_EXPORT_PRIVATE ID_Continue { |
| struct V8_EXPORT_PRIVATE WhiteSpace { |
| static bool Is(uchar c); |
| }; |
| +#endif // !V8_INTL_SUPPORT |
| struct V8_EXPORT_PRIVATE LineTerminator { |
| static bool Is(uchar c); |
| }; |