Silence warning.

llvm-svn: 86719
This commit is contained in:
Benjamin Kramer 2009-11-10 21:29:56 +00:00
parent ad5ef3d70f
commit 2c9a91c290
1 changed files with 1 additions and 1 deletions

View File

@ -803,7 +803,7 @@ void Parser::AnnotateTemplateIdTokenAsType(const CXXScopeSpec *SS) {
} }
/// \brief Determine whether the given token can end a template argument. /// \brief Determine whether the given token can end a template argument.
static const bool isEndOfTemplateArgument(Token Tok) { static bool isEndOfTemplateArgument(Token Tok) {
return Tok.is(tok::comma) || Tok.is(tok::greater) || return Tok.is(tok::comma) || Tok.is(tok::greater) ||
Tok.is(tok::greatergreater); Tok.is(tok::greatergreater);
} }