src/lexer.cpp

changeset 135
8b9132fea327
parent 134
eca2fc0acaa2
child 136
1c40bb4f8221
--- 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)

mercurial