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

@@ -35,12 +35,13 @@ Base64DecodeExt::Base64DecodeExt(std::string action)
this->action_kind = 1;
}
std::string& Base64DecodeExt::evaluate(std::string value,
std::string Base64DecodeExt::evaluate(std::string value,
Assay *assay) {
/**
* @todo Implement the transformation Base64DecodeExt
*/
assay->debug(4, "Transformation Base64DecodeExt is not implemented yet.");
return value;
}
} // namespace transformations