| 263 | |
| 264 | template <typename Function, typename Allocator> |
| 265 | void executor::post(ASIO_MOVE_ARG(Function) f, |
| 266 | const Allocator& a) const |
| 267 | { |
| 268 | get_impl()->post(function(ASIO_MOVE_CAST(Function)(f), a)); |
| 269 | } |
| 270 | |
| 271 | template <typename Function, typename Allocator> |
| 272 | void executor::defer(ASIO_MOVE_ARG(Function) f, |
no test coverage detected