Removes RuleMessage from action execute signature

This commit is contained in:
Felipe Zimmerle
2019-03-15 01:35:07 -03:00
parent 68f85628dd
commit 3dcfc2582e
30 changed files with 45 additions and 80 deletions

View File

@@ -33,8 +33,7 @@ class NoLog : public Action {
explicit NoLog(const std::string &action)
: Action(action, RunTimeOnlyIfMatchKind) { }
bool execute(RuleWithActions *rule, Transaction *transaction,
RuleMessage &rm) override;
bool execute(RuleWithActions *rule, Transaction *transaction) override;
};
} // namespace actions