]> granicus.if.org Git - clang/commitdiff
Add a space between closing template '>' to unbreak build.
authorCraig Topper <craig.topper@gmail.com>
Thu, 4 Jul 2013 03:15:42 +0000 (03:15 +0000)
committerCraig Topper <craig.topper@gmail.com>
Thu, 4 Jul 2013 03:15:42 +0000 (03:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185611 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaDecl.cpp

index 389655686c97fe46a11eb8932550c7e2ffa329e1..8e6b1bd287126a30f0c52ac1f7f792cfb125a5be 100644 (file)
@@ -5810,7 +5810,7 @@ static NamedDecl* DiagnoseInvalidRedeclaration(
   if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD))
     NewFDisConst = NewMD->isConst();
 
-  for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned>>::iterator
+  for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned> >::iterator
        NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end();
        NearMatch != NearMatchEnd; ++NearMatch) {
     FunctionDecl *FD = NearMatch->first;