From ec3f49dfdf54289cd3fd2c71a5622a8107d4c717 Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Mon, 29 Dec 2014 23:24:27 +0000 Subject: [PATCH] Fix build breakage That's what I get for last second changes... llvm-svn: 224967 --- clang/lib/Parse/ParseExprCXX.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clang/lib/Parse/ParseExprCXX.cpp b/clang/lib/Parse/ParseExprCXX.cpp index a6162e2..f101d9f 100644 --- a/clang/lib/Parse/ParseExprCXX.cpp +++ b/clang/lib/Parse/ParseExprCXX.cpp @@ -448,7 +448,8 @@ bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS, // like we never saw it. Token Identifier = Tok; // Stash away the identifier. ConsumeToken(); // Eat the identifier, current token is now '::'. - Diag(PP.getLocForEndOfTokenConsumeToken(), diag::err_expected) << tok::identifier; + Diag(PP.getLocForEndOfToken(ConsumeToken()), diag::err_expected) + << tok::identifier; UnconsumeToken(Identifier); // Stick the identifier back. Next = NextToken(); // Point Next at the '{' token. } -- 2.7.4