At one point there were going to be lexer and parser tokens.
Since that point is now long gone, we should rename LexerToken to
Token, as it is the only kind of token we have.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40105 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Lex/MacroInfo.cpp b/Lex/MacroInfo.cpp
index a9a8ad7..70e5140 100644
--- a/Lex/MacroInfo.cpp
+++ b/Lex/MacroInfo.cpp
@@ -50,8 +50,8 @@
        
   // Check all the tokens.
   for (unsigned i = 0, e = ReplacementTokens.size(); i != e; ++i) {
-    const LexerToken &A = ReplacementTokens[i];
-    const LexerToken &B = Other.ReplacementTokens[i];
+    const Token &A = ReplacementTokens[i];
+    const Token &B = Other.ReplacementTokens[i];
     if (A.getKind() != B.getKind() || 
         A.isAtStartOfLine() != B.isAtStartOfLine() ||
         A.hasLeadingSpace() != B.hasLeadingSpace())