cosmetics: Address some cppcheck complains

This commit is contained in:
Felipe Zimmerle
2020-08-06 19:02:00 -03:00
parent 51d06d7a8e
commit ae3ad5eaa7
5 changed files with 7 additions and 7 deletions

View File

@@ -58,8 +58,8 @@ RuleWithOperator::RuleWithOperator(Operator *op,
std::unique_ptr<std::string> fileName,
int lineNumber)
: RuleWithActions(actions, transformations, std::move(fileName), lineNumber),
m_operator(op),
m_variables(_variables) { /* */ }
m_variables(_variables),
m_operator(op) { /* */ }
RuleWithOperator::~RuleWithOperator() {