diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-10 00:24:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-10 00:24:58 +0000 |
commit | 804f65271953f358dc01bfcf74a93e8c93c5b2d6 (patch) | |
tree | 80aa6b0d905fa5776b57e218456b729d0bfd8532 /include/clang/Lex/Preprocessor.h | |
parent | 4a749b957f28292e8412b7c13b01ca4baeb78d24 (diff) |
implement rdar://7520940: published framework headers should
import other headers within the same framework with the full
framework path, not with a relative include.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@93083 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 a73d829f9e..5669a63207 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -698,7 +698,8 @@ public: /// return null on failure. isAngled indicates whether the file reference is /// for system #include's or not (i.e. using <> instead of ""). const FileEntry *LookupFile(const char *FilenameStart,const char *FilenameEnd, - bool isAngled, const DirectoryLookup *FromDir, + SourceLocation FilenameTokLoc, bool isAngled, + const DirectoryLookup *FromDir, const DirectoryLookup *&CurDir); /// GetCurLookup - The DirectoryLookup structure used to find the current |