Index: src/token.cc |
diff --git a/src/token.cc b/src/token.cc |
index feca7beb9fb39ea091da7772acd0c2c28afc3400..7ba7ed34205e1fa14603c91ebdd79036d5178c1a 100644 |
--- a/src/token.cc |
+++ b/src/token.cc |
@@ -33,21 +33,21 @@ namespace internal { |
#define T(name, string, precedence) #name, |
const char* const Token::name_[NUM_TOKENS] = { |
- TOKEN_LIST(T, T, IGNORE_TOKEN) |
+ TOKEN_LIST(T, T) |
}; |
#undef T |
#define T(name, string, precedence) string, |
const char* const Token::string_[NUM_TOKENS] = { |
- TOKEN_LIST(T, T, IGNORE_TOKEN) |
+ TOKEN_LIST(T, T) |
}; |
#undef T |
#define T(name, string, precedence) precedence, |
const int8_t Token::precedence_[NUM_TOKENS] = { |
- TOKEN_LIST(T, T, IGNORE_TOKEN) |
+ TOKEN_LIST(T, T) |
}; |
#undef T |
@@ -55,7 +55,7 @@ const int8_t Token::precedence_[NUM_TOKENS] = { |
#define KT(a, b, c) 'T', |
#define KK(a, b, c) 'K', |
const char Token::token_type[] = { |
- TOKEN_LIST(KT, KK, IGNORE_TOKEN) |
+ TOKEN_LIST(KT, KK) |
}; |
#undef KT |
#undef KK |