diff options
| author | Julie Hockett <juliehockett@google.com> | 2018-05-09 18:27:37 +0000 |
|---|---|---|
| committer | Julie Hockett <juliehockett@google.com> | 2018-05-09 18:27:37 +0000 |
| commit | 4e548fe06f300d3c9e013bd12be61e6a3859d9a3 (patch) | |
| tree | 3f98e71255036ca3574c6b41febbea0e4e3eae44 /clang-tools-extra/pp-trace/PPCallbacksTracker.cpp | |
| parent | 36d94ab8f0123022c460980e31d4ad331ca7eb78 (diff) | |
| download | bcm5719-llvm-4e548fe06f300d3c9e013bd12be61e6a3859d9a3.tar.gz bcm5719-llvm-4e548fe06f300d3c9e013bd12be61e6a3859d9a3.zip | |
[tools] Updating PPCallbacks::InclusionDirective calls
[revision] added SrcMgr::CharacteristicKind to the InclusionDirective
callback, this revision updates instances of it in clang-tools-extra.
Differential Revision: https://reviews.llvm.org/D46615
llvm-svn: 331905
Diffstat (limited to 'clang-tools-extra/pp-trace/PPCallbacksTracker.cpp')
| -rw-r--r-- | clang-tools-extra/pp-trace/PPCallbacksTracker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/pp-trace/PPCallbacksTracker.cpp b/clang-tools-extra/pp-trace/PPCallbacksTracker.cpp index 4bb126c080c..2530dc2d319 100644 --- a/clang-tools-extra/pp-trace/PPCallbacksTracker.cpp +++ b/clang-tools-extra/pp-trace/PPCallbacksTracker.cpp @@ -139,7 +139,7 @@ void PPCallbacksTracker::InclusionDirective( llvm::StringRef FileName, bool IsAngled, clang::CharSourceRange FilenameRange, const clang::FileEntry *File, llvm::StringRef SearchPath, llvm::StringRef RelativePath, - const clang::Module *Imported) { + const clang::Module *Imported, clang::SrcMgr::CharacteristicKind FileType) { beginCallback("InclusionDirective"); appendArgument("IncludeTok", IncludeTok); appendFilePathArgument("FileName", FileName); |

