FIX: Changed to const reference
This commit is contained in:
@@ -153,7 +153,7 @@ namespace kubecontrol
|
||||
|
||||
}
|
||||
|
||||
void KubePod::setArgs(std::string &args)
|
||||
void KubePod::setArgs(const std::string &args)
|
||||
{
|
||||
Args_.emplace_back(Utils::to_lower(args));
|
||||
}
|
||||
@@ -163,7 +163,7 @@ namespace kubecontrol
|
||||
return Args_;
|
||||
}
|
||||
|
||||
void KubePod::setCommand(std::string &command)
|
||||
void KubePod::setCommand(const std::string &command)
|
||||
{
|
||||
PodCommand_ = Utils::to_lower(command);
|
||||
}
|
||||
@@ -173,7 +173,7 @@ namespace kubecontrol
|
||||
return PodCommand_;
|
||||
}
|
||||
|
||||
void KubePod::setComponent(std::string &component)
|
||||
void KubePod::setComponent(const std::string &component)
|
||||
{
|
||||
this->Component_ = Utils::to_lower(component);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user