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