| 38 | struct SafeAsyncHandler |
| 39 | { |
| 40 | SafeAsyncHandler(const std::shared_ptr<Delegate>& pDelegate) |
| 41 | : mpDelegate(pDelegate) |
| 42 | { |
| 43 | } |
| 44 | |
| 45 | template <typename... T> |
| 46 | void operator()(T&&... t) const |
nothing calls this directly
no outgoing calls
no test coverage detected