Skip to content
Snippets Groups Projects
Commit b32b717b authored by Matthias Männich's avatar Matthias Männich
Browse files

cmInstallCommandArguments: do not access static members through `this`

parent 7eaa964e
No related branches found
Tags v3.10.0-rc1
No related merge requests found
......@@ -39,7 +39,7 @@ const std::string& cmInstallCommandArguments::GetDestination() const
if (this->GenericArguments != nullptr) {
return this->GenericArguments->GetDestination();
}
return this->EmptyString;
return EmptyString;
}
const std::string& cmInstallCommandArguments::GetComponent() const
......@@ -65,7 +65,7 @@ const std::string& cmInstallCommandArguments::GetRename() const
if (this->GenericArguments != nullptr) {
return this->GenericArguments->GetRename();
}
return this->EmptyString;
return EmptyString;
}
const std::string& cmInstallCommandArguments::GetPermissions() const
......@@ -76,7 +76,7 @@ const std::string& cmInstallCommandArguments::GetPermissions() const
if (this->GenericArguments != nullptr) {
return this->GenericArguments->GetPermissions();
}
return this->EmptyString;
return EmptyString;
}
bool cmInstallCommandArguments::GetOptional() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment