| 661 | |
| 662 | template <typename Function, typename Signature, typename Allocator> |
| 663 | inline void asio_handler_invoke(Function& f, |
| 664 | promise_handler<Signature, Allocator>* h) |
| 665 | { |
| 666 | typename promise_handler<Signature, Allocator>::executor_type |
| 667 | ex(h->get_executor()); |
| 668 | asio::dispatch(ex, promise_function_wrapper<Function>(f)); |
| 669 | } |
| 670 | |
| 671 | template <typename Function, typename Signature, typename Allocator> |
| 672 | inline void asio_handler_invoke(const Function& f, |
nothing calls this directly
no test coverage detected