--- a/src/lexer.cpp Sun Jul 20 17:25:36 2014 +0300 +++ b/src/lexer.cpp Mon Jul 21 17:14:42 2014 +0300 @@ -63,7 +63,7 @@ while (sc.getNextToken()) { // Preprocessor commands: - if (sc.getTokenType() ==Token::Hash) + if (sc.getTokenType() == Token::Hash) { mustGetFromScanner (sc,Token::Symbol); @@ -256,7 +256,7 @@ // String Lexer::describeTokenPrivate (Token tokType, Lexer::TokenInfo* tok) { - if (tokType <gLastNamedToken) + if (tokType < Token::LastNamedToken) return "\"" + LexerScanner::GetTokenString (tokType) + "\""; switch (tokType)