mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -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:
@@ -105,7 +105,7 @@ bool cmListFileParser::ParseFile(const char* filename)
|
||||
return false;
|
||||
}
|
||||
|
||||
return Parse();
|
||||
return this->Parse();
|
||||
}
|
||||
|
||||
bool cmListFileParser::ParseString(const char* str,
|
||||
@@ -118,7 +118,7 @@ bool cmListFileParser::ParseString(const char* str,
|
||||
return false;
|
||||
}
|
||||
|
||||
return Parse();
|
||||
return this->Parse();
|
||||
}
|
||||
|
||||
bool cmListFileParser::Parse()
|
||||
|
||||
Reference in New Issue
Block a user