From 209daa20b2bd2ee2a76e70af58e895647f7e284f Mon Sep 17 00:00:00 2001 From: Oleksandr Koval Date: Tue, 5 Jan 2021 14:32:36 +0200 Subject: 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. --- Source/cmFindPathCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/cmFindPathCommand.cxx') diff --git a/Source/cmFindPathCommand.cxx b/Source/cmFindPathCommand.cxx index 4bab469760..bece33ba7e 100644 --- a/Source/cmFindPathCommand.cxx +++ b/Source/cmFindPathCommand.cxx @@ -22,7 +22,7 @@ cmFindPathCommand::cmFindPathCommand(cmExecutionStatus& status) // cmFindPathCommand bool cmFindPathCommand::InitialPass(std::vector const& argsIn) { - this->DebugMode = ComputeIfDebugModeWanted(); + this->DebugMode = this->ComputeIfDebugModeWanted(); this->VariableDocumentation = "Path to a file."; this->CMakePathName = "INCLUDE"; if (!this->ParseArguments(argsIn)) { -- cgit v1.2.1