| 66 | } |
| 67 | |
| 68 | void cancel_one_timer(boost::asio::system_timer* t) |
| 69 | { |
| 70 | std::size_t num_cancelled = t->cancel_one(); |
| 71 | BOOST_ASIO_CHECK(num_cancelled == 1); |
| 72 | } |
| 73 | |
| 74 | boost::asio::system_timer::time_point now() |
| 75 | { |
nothing calls this directly
no test coverage detected