| 35 | { |
| 36 | std::chrono::system_clock::duration duration; |
| 37 | awaiter(std::chrono::system_clock::duration d) |
| 38 | : duration(d) |
| 39 | {} |
| 40 | |
| 41 | bool await_ready() const { return duration.count() <= 0; } |
| 42 | void await_resume() {} |
nothing calls this directly
no outgoing calls
no test coverage detected