| 270 | |
| 271 | template <typename Function, typename Allocator> |
| 272 | void executor::defer(ASIO_MOVE_ARG(Function) f, |
| 273 | const Allocator& a) const |
| 274 | { |
| 275 | get_impl()->defer(function(ASIO_MOVE_CAST(Function)(f), a)); |
| 276 | } |
| 277 | |
| 278 | template <typename Executor> |
| 279 | Executor* executor::target() ASIO_NOEXCEPT |
no outgoing calls
no test coverage detected