From: Richard Trieu Date: Tue, 14 Feb 2017 23:56:55 +0000 (+0000) Subject: Remove unused variable. No functional change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3caca642448d9ee7b94e9cd4ac7a16d482f2833;p=clang Remove unused variable. No functional change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@295125 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseDecl.cpp b/lib/Parse/ParseDecl.cpp index e0347ccf2f..20a9cb0932 100644 --- a/lib/Parse/ParseDecl.cpp +++ b/lib/Parse/ParseDecl.cpp @@ -2978,7 +2978,7 @@ void Parser::ParseDeclarationSpecifiers(DeclSpec &DS, // attribute declaration and continue. if (NextToken().is(tok::l_paren)) { // Consume the __declspec identifier. - SourceLocation Loc = ConsumeToken(); + ConsumeToken(); // Eat the parens and everything between them. BalancedDelimiterTracker T(*this, tok::l_paren);