diff options
author | Brad King <brad.king@kitware.com> | 2021-01-06 15:20:23 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-01-06 15:20:57 (GMT) |
commit | 91f0f4aa73a78b00af9cdeb6fb7a5a4236fbad80 (patch) | |
tree | cfe228ccfd101f4171b44a5b922dd5157f26f596 /Source/cmDependsCompiler.cxx | |
parent | c1a7de72e1815cecf825d833161bc938afff65ee (diff) | |
parent | 209daa20b2bd2ee2a76e70af58e895647f7e284f (diff) | |
download | CMake-91f0f4aa73a78b00af9cdeb6fb7a5a4236fbad80.zip CMake-91f0f4aa73a78b00af9cdeb6fb7a5a4236fbad80.tar.gz CMake-91f0f4aa73a78b00af9cdeb6fb7a5a4236fbad80.tar.bz2 |
Merge topic 'explicit-this-fix'
209daa20b2 Code style: add missed explicit 'this->'
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5400
Diffstat (limited to 'Source/cmDependsCompiler.cxx')
-rw-r--r-- | Source/cmDependsCompiler.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmDependsCompiler.cxx b/Source/cmDependsCompiler.cxx index 97534bc..ec31f68 100644 --- a/Source/cmDependsCompiler.cxx +++ b/Source/cmDependsCompiler.cxx @@ -205,13 +205,13 @@ void cmDependsCompiler::WriteDependencies( // external dependencies file for (auto& node : makeDependencies) { - auto target = LocalGenerator->ConvertToMakefilePath( + auto target = this->LocalGenerator->ConvertToMakefilePath( this->LocalGenerator->MaybeConvertToRelativePath(binDir, node.first)); auto& deps = node.second; std::transform( deps.cbegin(), deps.cend(), deps.begin(), [this, &binDir](const std::string& dep) { - return LocalGenerator->ConvertToMakefilePath( + return this->LocalGenerator->ConvertToMakefilePath( this->LocalGenerator->MaybeConvertToRelativePath(binDir, dep)); }); |