diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-10 00:35:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-10 00:35:27 +0000 |
commit | abcbb7c05b6ed845a1621bb939c9ae19d0496cfe (patch) | |
tree | 4e4578b4ccd622e305b8f3e116f142e49b52de2e /clang/lib/Lex/PPDirectives.cpp | |
parent | 2ceb625f59a626647dac0d8ca45225451a31e306 (diff) | |
download | bcm5719-llvm-abcbb7c05b6ed845a1621bb939c9ae19d0496cfe.tar.gz bcm5719-llvm-abcbb7c05b6ed845a1621bb939c9ae19d0496cfe.zip |
clarify comment.
llvm-svn: 93084
Diffstat (limited to 'clang/lib/Lex/PPDirectives.cpp')
-rw-r--r-- | clang/lib/Lex/PPDirectives.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Lex/PPDirectives.cpp b/clang/lib/Lex/PPDirectives.cpp index a719a541a36..d926617d7d0 100644 --- a/clang/lib/Lex/PPDirectives.cpp +++ b/clang/lib/Lex/PPDirectives.cpp @@ -437,8 +437,8 @@ const FileEntry *Preprocessor::LookupFile(const char *FilenameStart, if (FE) { // Warn about normal quoted #include from framework headers. Since // framework headers are published (both public and private ones) they - // should not do relative searches, they should do an include relative to - // their framework. + // should not do relative searches, they should do an include with the + // framework path included. if (!isAngled && CurDir && FilenameTokLoc.isValid() && CurDir->isFramework() && CurDir == CurDirLookup) Diag(FilenameTokLoc, diag::warn_pp_relative_include_from_framework); |