diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-22 00:14:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-22 00:14:44 +0000 |
commit | f45b646244705410866d62f1d8bf017a047ed662 (patch) | |
tree | 7e06be60712adafd743487d325ebadb6678911fe /include/clang/Lex/Preprocessor.h | |
parent | 4a415670481424a210df419a9f96e29db9939106 (diff) |
revert my patch for rdar://7520940 that warns when a published header
is #included with "foo.h" style syntax instead of framework syntax.
It produced too much noise.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94120 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, 1 insertions, 2 deletions
diff --git a/include/clang/Lex/Preprocessor.h b/include/clang/Lex/Preprocessor.h index ad85122437..1e664c07a4 100644 --- a/include/clang/Lex/Preprocessor.h +++ b/include/clang/Lex/Preprocessor.h @@ -697,8 +697,7 @@ 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(llvm::StringRef Filename, - SourceLocation FilenameTokLoc, bool isAngled, - const DirectoryLookup *FromDir, + bool isAngled, const DirectoryLookup *FromDir, const DirectoryLookup *&CurDir); /// GetCurLookup - The DirectoryLookup structure used to find the current |