--- a/src/LexerScanner.h Sun Feb 23 17:21:18 2014 +0200 +++ b/src/LexerScanner.h Sun Feb 23 17:45:34 2014 +0200 @@ -80,12 +80,12 @@ return mPosition - mLineBreakPosition; } - inline TokenType GetTokenType() const + inline ETokenType GetTokenType() const { return mTokenType; } - static String GetTokenString (TokenType a); + static String GetTokenString (ETokenType a); private: char* mData; @@ -93,7 +93,7 @@ char* mLineBreakPosition; String mTokenText, mLastToken; - TokenType mTokenType; + ETokenType mTokenType; int mLine; bool CheckString (const char* c, int flags = 0);