| 55 | struct awaiter |
| 56 | { |
| 57 | bool await_ready() { return false; } |
| 58 | T await_resume() { return std::move(coro.promise().result); } |
| 59 | auto await_suspend(std::coroutine_handle<> h) |
| 60 | { |
nothing calls this directly
no outgoing calls
no test coverage detected