Fix actions: returning string copy after evaluation

This commit is contained in:
Felipe Zimmerle
2015-07-24 18:47:47 -03:00
parent b2bbe24e29
commit ec9a97324f
72 changed files with 85 additions and 72 deletions

View File

@@ -31,7 +31,7 @@ namespace transformations {
class Base64DecodeExt : public Transformation {
public:
explicit Base64DecodeExt(std::string action);
std::string& evaluate(std::string exp,
std::string evaluate(std::string exp,
Assay *assay) override;
};