diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2012-03-01 04:55:54 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2012-03-01 04:55:54 +0000 |
commit | 701e3366828adf740734ae5bf4424ecac059bc9a (patch) | |
tree | 2f76eec0c494c2d63be4788462070876e899be7e | |
parent | 7abe1666f225b6d1a11aa7ed19d9a0dcc49391cb (diff) |
Fixing a buildbot complaint about nested templates.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151803 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Lex/HeaderSearch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Lex/HeaderSearch.h b/include/clang/Lex/HeaderSearch.h index bbd7146cf4..f4b6876c72 100644 --- a/include/clang/Lex/HeaderSearch.h +++ b/include/clang/Lex/HeaderSearch.h @@ -228,7 +228,7 @@ public: 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 |