| 14 | { |
| 15 | asio::steady_timer & tim; |
| 16 | wait_op(asio::steady_timer & tim) : tim(tim) {} |
| 17 | void ready(cobalt::handler<system::error_code> h ) override // <2> |
| 18 | { |
| 19 | if (tim.expiry() < std::chrono::steady_clock::now()) |
nothing calls this directly
no outgoing calls
no test coverage detected