Cosmetics: address cppcheck warnings on src/actions

This commit is contained in:
Felipe Zimmerle
2020-01-22 10:37:24 -03:00
parent a6620604d4
commit 9101a8ab15
96 changed files with 99 additions and 97 deletions

View File

@@ -32,9 +32,9 @@ namespace actions {
class InitCol : public Action {
public:
explicit InitCol(std::string action) : Action(action) { }
explicit InitCol(const std::string &action) : Action(action) { }
InitCol(std::string action, std::unique_ptr<RunTimeString> z)
InitCol(const std::string &action, std::unique_ptr<RunTimeString> z)
: Action(action, RunTimeOnlyIfMatchKind),
m_string(std::move(z)) { }