diff options
| author | Richard Trieu <rtrieu@google.com> | 2017-02-14 23:56:55 +0000 |
|---|---|---|
| committer | Richard Trieu <rtrieu@google.com> | 2017-02-14 23:56:55 +0000 |
| commit | ba05737f1f7eb08513b0cd3a109662bf5c4d2c1f (patch) | |
| tree | 44d2b4d5d0c8ad01acd5739109ea4b14ec1820c5 | |
| parent | 0fcdb48c6e5e0ee05a66c8b9b9b57ca17d79bbf9 (diff) | |
| download | bcm5719-llvm-ba05737f1f7eb08513b0cd3a109662bf5c4d2c1f.tar.gz bcm5719-llvm-ba05737f1f7eb08513b0cd3a109662bf5c4d2c1f.zip | |
Remove unused variable. No functional change.
llvm-svn: 295125
| -rw-r--r-- | clang/lib/Parse/ParseDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp index e0347ccf2fb..20a9cb09329 100644 --- a/clang/lib/Parse/ParseDecl.cpp +++ b/clang/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); |

