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/cmState.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/cmState.cxx')
-rw-r--r-- | Source/cmState.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmState.cxx b/Source/cmState.cxx index 3692a01..0fd7901 100644 --- a/Source/cmState.cxx +++ b/Source/cmState.cxx @@ -524,7 +524,7 @@ bool cmState::AddScriptedCommand(std::string const& name, BT<Command> command, cmState::Command cmState::GetCommand(std::string const& name) const { - return GetCommandByExactName(cmSystemTools::LowerCase(name)); + return this->GetCommandByExactName(cmSystemTools::LowerCase(name)); } cmState::Command cmState::GetCommandByExactName(std::string const& name) const |