]> granicus.if.org Git - clang/commitdiff
another minor simplification
authorChris Lattner <sabre@nondot.org>
Sun, 6 Apr 2008 05:27:21 +0000 (05:27 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 6 Apr 2008 05:27:21 +0000 (05:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49264 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/ParseDecl.cpp

index 1659af30e6ab2c3c563cd1a14e5cc57aeba09ffd..a46490c7e1e16e10f0a328d2ec5e07ed8a7d4986 100644 (file)
@@ -1446,9 +1446,7 @@ void Parser::ParseBracketDeclarator(Declarator &D) {
   // the the token after the star is a ']'.  Since stars in arrays are
   // infrequent, use of lookahead is not costly here.
   if (Tok.is(tok::star) && GetLookAheadToken(1).is(tok::r_square)) {
-    // Remember the '*' token, in case we have to un-get it.
-    Token StarTok = Tok;
-    ConsumeToken();
+    ConsumeToken();  // Eat the '*'.
 
     if (StaticLoc.isValid())
       Diag(StaticLoc, diag::err_unspecified_vla_size_with_static);