| 4076 | (p.*member)( value ); |
| 4077 | } |
| 4078 | virtual void setFlag( C& p ) const { |
| 4079 | typename RemoveConstRef<M>::type value; |
| 4080 | convertInto( true, value ); |
| 4081 | (p.*member)( value ); |
| 4082 | } |
| 4083 | virtual bool takesArg() const { return !IsBool<M>::value; } |
| 4084 | virtual IArgFunction<C>* clone() const { return new BoundUnaryMethod( *this ); } |
| 4085 | void (C::*member)( M ); |
nothing calls this directly
no test coverage detected