| 4127 | function( obj, value ); |
| 4128 | } |
| 4129 | virtual void setFlag( C& obj ) const { |
| 4130 | typename RemoveConstRef<T>::type value; |
| 4131 | convertInto( true, value ); |
| 4132 | function( obj, value ); |
| 4133 | } |
| 4134 | virtual bool takesArg() const { return !IsBool<T>::value; } |
| 4135 | virtual IArgFunction<C>* clone() const { return new BoundBinaryFunction( *this ); } |
| 4136 | void (*function)( C&, T ); |
nothing calls this directly
no test coverage detected