Silence warning.

llvm-svn: 86719
diff --git a/clang/lib/Parse/ParseTemplate.cpp b/clang/lib/Parse/ParseTemplate.cpp
index 4e7ceaa..cf7d511 100644
--- a/clang/lib/Parse/ParseTemplate.cpp
+++ b/clang/lib/Parse/ParseTemplate.cpp
@@ -803,7 +803,7 @@
 }
 
 /// \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) || 
          Tok.is(tok::greatergreater);
 }