From e3caca642448d9ee7b94e9cd4ac7a16d482f2833 Mon Sep 17 00:00:00 2001 From: Richard Trieu Date: Tue, 14 Feb 2017 23:56:55 +0000 Subject: [PATCH] Remove unused variable. No functional change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@295125 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Parse/ParseDecl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1