| 42 | |
| 43 | template <typename... Args> |
| 44 | static decltype(auto) call(F& f, Args&&... args) { |
| 45 | return f(std::forward<Args>(args)...); |
| 46 | } |
| 47 | |
| 48 | struct caller { |
| 49 | template <typename... Args> |
nothing calls this directly
no outgoing calls
no test coverage detected