r185611 - Add a space between closing template '>' to unbreak build.

Craig Topper craig.topper at gmail.com
Wed Jul 3 20:15:42 PDT 2013


Author: ctopper
Date: Wed Jul  3 22:15:42 2013
New Revision: 185611

URL: http://llvm.org/viewvc/llvm-project?rev=185611&view=rev
Log:
Add a space between closing template '>' to unbreak build.

Modified:
    cfe/trunk/lib/Sema/SemaDecl.cpp

Modified: cfe/trunk/lib/Sema/SemaDecl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaDecl.cpp?rev=185611&r1=185610&r2=185611&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaDecl.cpp (original)
+++ cfe/trunk/lib/Sema/SemaDecl.cpp Wed Jul  3 22:15:42 2013
@@ -5810,7 +5810,7 @@ static NamedDecl* DiagnoseInvalidRedecla
   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;





More information about the cfe-commits mailing list