forgot the virtual member
This commit is contained in:
parent
0fa524693b
commit
bf6537d994
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue