[cfe-commits] r151803 - /cfe/trunk/include/clang/Lex/HeaderSearch.h

Aaron Ballman aaron at aaronballman.com
Wed Feb 29 20:55:55 PST 2012


Author: aaronballman
Date: Wed Feb 29 22:55:54 2012
New Revision: 151803

URL: http://llvm.org/viewvc/llvm-project?rev=151803&view=rev
Log:
Fixing a buildbot complaint about nested templates.

Modified:
    cfe/trunk/include/clang/Lex/HeaderSearch.h

Modified: cfe/trunk/include/clang/Lex/HeaderSearch.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Lex/HeaderSearch.h?rev=151803&r1=151802&r2=151803&view=diff
==============================================================================
--- cfe/trunk/include/clang/Lex/HeaderSearch.h (original)
+++ cfe/trunk/include/clang/Lex/HeaderSearch.h Wed Feb 29 22:55:54 2012
@@ -228,7 +228,7 @@
 
   StringRef MapHeader(const StringRef& Source, bool isAngled) {
     // Do any filename replacements before anything else
-    llvm::StringMap<std::pair<StringRef,bool>>::const_iterator iter = 
+    llvm::StringMap<std::pair<StringRef,bool> >::const_iterator iter = 
       IncludeAliasMap.find(Source);
     if (iter != IncludeAliasMap.end()) {
       // If the angling matches, then we've found a replacement





More information about the cfe-commits mailing list