diff options
author | Douglas Gregor <dgregor@apple.com> | 2013-01-04 18:58:28 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2013-01-04 18:58:28 +0000 |
commit | 8f1f3331dc00833ea74359ec39cc46c31de5f166 (patch) | |
tree | b14c353b8a89cea1692c3be9823d6f1d96a162df /clang/lib/Lex/PPLexerChange.cpp | |
parent | f6e6655f372b16bd72b886f2d9a3520fcbb57582 (diff) | |
download | bcm5719-llvm-8f1f3331dc00833ea74359ec39cc46c31de5f166.tar.gz bcm5719-llvm-8f1f3331dc00833ea74359ec39cc46c31de5f166.zip |
Add the module name to the 'incomplete umbrella header' warning.
llvm-svn: 171497
Diffstat (limited to 'clang/lib/Lex/PPLexerChange.cpp')
-rw-r--r-- | clang/lib/Lex/PPLexerChange.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/PPLexerChange.cpp b/clang/lib/Lex/PPLexerChange.cpp index 0ce67dce7e6..be4defe7864 100644 --- a/clang/lib/Lex/PPLexerChange.cpp +++ b/clang/lib/Lex/PPLexerChange.cpp @@ -395,7 +395,7 @@ bool Preprocessor::HandleEndOfFile(Token &Result, bool isEndOfMacro) { SmallString<128> RelativePath; computeRelativePath(FileMgr, Dir, Header, RelativePath); Diag(StartLoc, diag::warn_uncovered_module_header) - << RelativePath; + << Mod->getFullModuleName() << RelativePath; } } } |