| 43 | struct func_wrapper_base { |
| 44 | func_handle hfunc; |
| 45 | explicit func_wrapper_base(func_handle &&hf) noexcept : hfunc(hf) {} |
| 46 | }; |
| 47 | |
| 48 | template <typename Return, typename... Args> |
nothing calls this directly
no outgoing calls
no test coverage detected