mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Code style: add missed explicit 'this->'
CMake uses explicit 'this->' style. Using custom clang-tidy check we can detect and fix places where 'this->' was missed.
This commit is contained in:
@@ -147,7 +147,7 @@ void cmTestGenerator::GenerateScriptForConfig(std::ostream& os,
|
||||
|
||||
// Evaluate command line arguments
|
||||
std::vector<std::string> argv =
|
||||
EvaluateCommandLineArguments(this->Test->GetCommand(), ge, config);
|
||||
this->EvaluateCommandLineArguments(this->Test->GetCommand(), ge, config);
|
||||
|
||||
// Expand arguments if COMMAND_EXPAND_LISTS is set
|
||||
if (this->Test->GetCommandExpandLists()) {
|
||||
|
||||
Reference in New Issue
Block a user