Removes RuleMessage from action execute signature

This commit is contained in:
Felipe Zimmerle
2019-03-15 01:35:07 -03:00
parent 6547f3601f
commit 7da4c9a007
30 changed files with 45 additions and 80 deletions

View File

@@ -32,8 +32,7 @@ class Drop : public Action {
public:
explicit Drop(const std::string &action) : Action(action) { }
bool execute(RuleWithActions *rule, Transaction *transaction,
RuleMessage &rm) override;
bool execute(RuleWithActions *rule, Transaction *transaction) override;
bool isDisruptive() override { return true; }
};