| 52 | struct Caller |
| 53 | { |
| 54 | explicit Caller(Ret (Class::*t_func)(Param...)) : m_func(t_func) {} |
| 55 | |
| 56 | template<typename ... Inner> |
| 57 | Ret operator()(Class &o, Inner&& ... inner) const { |
nothing calls this directly
no outgoing calls
no test coverage detected