diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-11-20 17:46:46 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-11-20 17:46:46 +0000 |
commit | 1c2e9332fa69727425a3a2b912e36e2ab62083f8 (patch) | |
tree | e37d5a66ca966268298e869872def24606e0c78f /include/clang/Lex/HeaderSearch.h | |
parent | 1bea8807bcd2be10bf6309a3a848489434464ced (diff) |
Allow preprocessor callbacks to recover from a "file not found" error,
from Jason Haslam!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145012 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/HeaderSearch.h')
-rw-r--r-- | include/clang/Lex/HeaderSearch.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/clang/Lex/HeaderSearch.h b/include/clang/Lex/HeaderSearch.h index b56fba538a..a6d7520f29 100644 --- a/include/clang/Lex/HeaderSearch.h +++ b/include/clang/Lex/HeaderSearch.h @@ -207,6 +207,15 @@ public: //LookupFileCache.clear(); } + /// AddSearchPath - Add an additional search path. + void AddSearchPath(const DirectoryLookup &dir, bool isAngled) { + unsigned idx = isAngled ? SystemDirIdx : AngledDirIdx; + SearchDirs.insert(SearchDirs.begin() + idx, dir); + if (!isAngled) + AngledDirIdx++; + SystemDirIdx++; + } + /// \brief Set the path to the module cache and the name of the module /// we're building void configureModules(StringRef CachePath, StringRef BuildingModule) { @@ -266,7 +275,8 @@ public: const FileEntry *CurFileEnt, SmallVectorImpl<char> *SearchPath, SmallVectorImpl<char> *RelativePath, - ModuleMap::Module **SuggestedModule); + ModuleMap::Module **SuggestedModule, + bool SkipCache = false); /// LookupSubframeworkHeader - Look up a subframework for the specified /// #include file. For example, if #include'ing <HIToolbox/HIToolbox.h> from |