Using run time string on the operators

This commit is contained in:
Felipe Zimmerle
2018-01-22 18:05:02 -03:00
parent 6a97dbee7a
commit a299997e02
74 changed files with 6884 additions and 6111 deletions

View File

@@ -27,7 +27,7 @@ namespace operators {
bool EndsWith::evaluate(Transaction *transaction, Rule *rule,
const std::string &input, std::shared_ptr<RuleMessage> ruleMessage) {
bool ret = false;
std::string p = MacroExpansion::expand(m_param, transaction);
std::string p(m_string->evaluate(transaction));
if (input.length() >= p.length()) {
ret = (0 == input.compare(input.length() - p.length(),