aboutsummaryrefslogtreecommitdiffstats
path: root/Token.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Token.cpp')
-rw-r--r--Token.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Token.cpp b/Token.cpp
index 6ae6456a..0264f7e8 100644
--- a/Token.cpp
+++ b/Token.cpp
@@ -47,21 +47,21 @@ namespace solidity {
#define T(name, string, precedence) #name,
const char* const Token::m_name[NUM_TOKENS] = {
- TOKEN_LIST(T, T)
+ TOKEN_LIST(T, T)
};
#undef T
#define T(name, string, precedence) string,
const char* const Token::m_string[NUM_TOKENS] = {
- TOKEN_LIST(T, T)
+ TOKEN_LIST(T, T)
};
#undef T
#define T(name, string, precedence) precedence,
const int8_t Token::m_precedence[NUM_TOKENS] = {
- TOKEN_LIST(T, T)
+ TOKEN_LIST(T, T)
};
#undef T
@@ -69,7 +69,7 @@ const int8_t Token::m_precedence[NUM_TOKENS] = {
#define KT(a, b, c) 'T',
#define KK(a, b, c) 'K',
const char Token::m_tokenType[] = {
- TOKEN_LIST(KT, KK)
+ TOKEN_LIST(KT, KK)
};
#undef KT
#undef KK