diff options
Diffstat (limited to 'Parse/ParseDecl.cpp')
-rw-r--r-- | Parse/ParseDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parse/ParseDecl.cpp b/Parse/ParseDecl.cpp index 02a79e68e5..c40e749659 100644 --- a/Parse/ParseDecl.cpp +++ b/Parse/ParseDecl.cpp @@ -1349,7 +1349,7 @@ void Parser::ParseBracketDeclarator(Declarator &D) { ExprResult NumElements(false); if (Tok.getKind() == tok::star) { // Remember the '*' token, in case we have to un-get it. - LexerToken StarTok = Tok; + Token StarTok = Tok; ConsumeToken(); // Check that the ']' token is present to avoid incorrectly parsing |