From: Craig Topper Date: Thu, 4 Jul 2013 03:15:42 +0000 (+0000) Subject: Add a space between closing template '>' to unbreak build. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8bc99dd30cd8716aa1f14b037ad1d70c45039911;p=clang Add a space between closing template '>' to unbreak build. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185611 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 389655686c..8e6b1bd287 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -5810,7 +5810,7 @@ static NamedDecl* DiagnoseInvalidRedeclaration( if (CXXMethodDecl *NewMD = dyn_cast(NewFD)) NewFDisConst = NewMD->isConst(); - for (SmallVectorImpl>::iterator + for (SmallVectorImpl >::iterator NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end(); NearMatch != NearMatchEnd; ++NearMatch) { FunctionDecl *FD = NearMatch->first;