diff options
author | Nikola Smiljanic <popizdeh@gmail.com> | 2015-05-12 11:48:21 +0000 |
---|---|---|
committer | Nikola Smiljanic <popizdeh@gmail.com> | 2015-05-12 11:48:21 +0000 |
commit | 90476a5d90467e1300cd64cf3904ff44fd94a030 (patch) | |
tree | aa0a3eb05e3938b6bfc5d8316d00ce30805947be /clang-tools-extra/pp-trace/PPCallbacksTracker.h | |
parent | fb891fcef6f12873f6a0c1def9e8394cecf30a65 (diff) | |
download | bcm5719-llvm-90476a5d90467e1300cd64cf3904ff44fd94a030.tar.gz bcm5719-llvm-90476a5d90467e1300cd64cf3904ff44fd94a030.zip |
Fix misleading parameter name for PPCallbacks::FileSkipped.
Patch thanks to Vladimir Voskresensky.
llvm-svn: 237116
Diffstat (limited to 'clang-tools-extra/pp-trace/PPCallbacksTracker.h')
-rw-r--r-- | clang-tools-extra/pp-trace/PPCallbacksTracker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/pp-trace/PPCallbacksTracker.h b/clang-tools-extra/pp-trace/PPCallbacksTracker.h index dfc56643c9e..d051bc0d88f 100644 --- a/clang-tools-extra/pp-trace/PPCallbacksTracker.h +++ b/clang-tools-extra/pp-trace/PPCallbacksTracker.h @@ -84,7 +84,7 @@ public: clang::PPCallbacks::FileChangeReason Reason, clang::SrcMgr::CharacteristicKind FileType, clang::FileID PrevFID = clang::FileID()) override; - void FileSkipped(const clang::FileEntry &ParentFile, + void FileSkipped(const clang::FileEntry &SkippedFile, const clang::Token &FilenameTok, clang::SrcMgr::CharacteristicKind FileType) override; bool FileNotFound(llvm::StringRef FileName, |