| 55 | |
| 56 | template<typename ... Inner> |
| 57 | Ret operator()(Class &o, Inner&& ... inner) const { |
| 58 | return (o.*m_func)(std::forward<Inner>(inner)...); |
| 59 | } |
| 60 | |
| 61 | Ret (Class::*m_func)(Param...); |
| 62 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected