mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-20 21:28:23 -05: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:
+1
-1
@@ -172,7 +172,7 @@ public:
|
||||
void SetProperty(const std::string& prop, const char* value);
|
||||
void SetProperty(const std::string& prop, const std::string& value)
|
||||
{
|
||||
SetProperty(prop, value.c_str());
|
||||
this->SetProperty(prop, value.c_str());
|
||||
}
|
||||
void AppendProperty(const std::string& prop, const std::string& value,
|
||||
bool asString = false);
|
||||
|
||||
Reference in New Issue
Block a user