mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 07:08:38 -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:
@@ -585,7 +585,8 @@ public:
|
||||
std::string PdbDir;
|
||||
bool empty() const
|
||||
{
|
||||
return OutDir.empty() && ImpDir.empty() && PdbDir.empty();
|
||||
return this->OutDir.empty() && this->ImpDir.empty() &&
|
||||
this->PdbDir.empty();
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user