mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -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:
@@ -84,8 +84,8 @@ void TargetIncludeDirectoriesImpl::HandleInterfaceContent(
|
||||
cmTarget* tgt, const std::vector<std::string>& content, bool prepend,
|
||||
bool system)
|
||||
{
|
||||
cmTargetPropCommandBase::HandleInterfaceContent(tgt, content, prepend,
|
||||
system);
|
||||
this->cmTargetPropCommandBase::HandleInterfaceContent(tgt, content, prepend,
|
||||
system);
|
||||
if (system) {
|
||||
std::string joined = this->Join(content);
|
||||
tgt->AppendProperty("INTERFACE_SYSTEM_INCLUDE_DIRECTORIES", joined);
|
||||
|
||||
Reference in New Issue
Block a user