forgot the virtual member

This commit is contained in:
Johann Dreo 2014-01-13 09:42:36 +01:00
commit bf6537d994

View file

@ -58,7 +58,7 @@ class Assign : public Functor<OP, OutIt>
public:
Assign( OP & o ) : Functor<OP, OutIt>(o) {}
int operator() ( int& value, OutIt out )
virtual int operator() ( int& value, OutIt out )
{
// std::clog << value << " + " << this->op.arg << std::endl;
return this->op(value,out);