src/lexerScanner.cpp

changeset 136
1c40bb4f8221
parent 135
8b9132fea327
child 138
a426c1039655
--- a/src/lexerScanner.cpp	Mon Jul 21 17:14:42 2014 +0300
+++ b/src/lexerScanner.cpp	Tue Jul 22 02:52:25 2014 +0300
@@ -111,7 +111,7 @@
 	"return",
 };
 
-static_assert (countof (gTokenStrings) == (int) Token::LastNamedToken + 1,
+static_assert (countof (gTokenStrings) == (int) LastNamedToken + 1,
 	"Count of gTokenStrings is not the same as the amount of named token identifiers.");
 
 // =============================================================================
@@ -192,7 +192,7 @@
 	{
 		int flags = 0;
 
-		if (i >= int (Token::FirstNamedToken))
+		if (i >= int (FirstNamedToken))
 			flags |= FCheckWord;
 
 		if (checkString (gTokenStrings[i], flags))
@@ -290,7 +290,7 @@
 //
 String LexerScanner::GetTokenString (Token a)
 {
-	ASSERT_LT_EQ (a, Token::LastNamedToken);
+	ASSERT_LT_EQ (a, LastNamedToken);
 	return gTokenStrings[int (a)];
 }
 

mercurial