| 406 | boost::asio::io_context::executor_type> io_context_system_timer; |
| 407 | |
| 408 | io_context_system_timer make_convertible_timer(boost::asio::io_context& ioc, int* count) |
| 409 | { |
| 410 | io_context_system_timer t(ioc); |
| 411 | t.expires_after(boost::asio::chrono::seconds(1)); |
| 412 | t.async_wait(bindns::bind(increment, count)); |
| 413 | return t; |
| 414 | } |
| 415 | |
| 416 | void system_timer_move_test() |
| 417 | { |
no test coverage detected