Index: src/unicode.h |
diff --git a/src/unicode.h b/src/unicode.h |
index 9aece253fe41089782fe81c6831e052af215d37c..23a044c9f98bf1e63678615a1099776a8c536f67 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_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); |
}; |