File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ class RuleWithActions : public Rule {
8080
8181 std::vector<actions::Action *> getActionsByName (const std::string& name,
8282 const Transaction *t);
83- bool containsTag (const std::string& name, Transaction *t);
83+ bool containsTag (const std::string& name, Transaction *t) const ;
8484 bool containsMsg (const std::string& name, Transaction *t);
8585
8686 inline bool isChained () const { return m_isChained == true ; }
Original file line number Diff line number Diff line change @@ -441,7 +441,7 @@ void RuleWithActions::executeTransformations(
441441}
442442
443443
444- bool RuleWithActions::containsTag (const std::string& name, Transaction *t) {
444+ bool RuleWithActions::containsTag (const std::string& name, Transaction *t) const {
445445 for (const auto &tag : m_actionsTag) {
446446 if (tag != NULL && tag->getName (t) == name) {
447447 return true ;
You can’t perform that action at this time.
0 commit comments