summaryrefslogtreecommitdiffstats
path: root/clang/Parse/ParseInit.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-07-20 16:59:19 +0000
committerChris Lattner <sabre@nondot.org>2007-07-20 16:59:19 +0000
commit146762e7a49785c29d1ff84c1733af19bc012b9b (patch)
tree16a4cf596236998520af8c240a4386f53cef66f1 /clang/Parse/ParseInit.cpp
parent77e9de50a112dc3f0bee0d43469db4bde47225c9 (diff)
downloadbcm5719-llvm-146762e7a49785c29d1ff84c1733af19bc012b9b.tar.gz
bcm5719-llvm-146762e7a49785c29d1ff84c1733af19bc012b9b.zip
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. llvm-svn: 40105
Diffstat (limited to 'clang/Parse/ParseInit.cpp')
-rw-r--r--clang/Parse/ParseInit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/Parse/ParseInit.cpp b/clang/Parse/ParseInit.cpp
index 75e1c7356ed..0d443b5b544 100644
--- a/clang/Parse/ParseInit.cpp
+++ b/clang/Parse/ParseInit.cpp
@@ -115,7 +115,7 @@ Parser::ExprResult Parser::ParseInitializerWithPotentialDesignator() {
// assignment-expression or if it is an old-style structure field
// designator.
// TODO: Check that this is the first designator.
- LexerToken Ident = Tok;
+ Token Ident = Tok;
ConsumeToken();
// If this is the gross GNU extension, handle it now.
OpenPOWER on IntegriCloud