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/Preprocessor.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/Preprocessor.h')
-rw-r--r-- | include/clang/Lex/Preprocessor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Lex/Preprocessor.h b/include/clang/Lex/Preprocessor.h index 90f64c4554..cf77824120 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -1008,7 +1008,8 @@ public: const DirectoryLookup *&CurDir, SmallVectorImpl<char> *SearchPath, SmallVectorImpl<char> *RelativePath, - ModuleMap::Module **SuggestedModule); + ModuleMap::Module **SuggestedModule, + bool SkipCache = false); /// GetCurLookup - The DirectoryLookup structure used to find the current /// FileEntry, if CurLexer is non-null and if applicable. This allows us to |