| 625 | } |
| 626 | |
| 627 | AwaitTask::AwaitTask(Handle newHandle) : handle(newHandle) {} |
| 628 | |
| 629 | AwaitTask::AwaitTask(AwaitTask&& other) noexcept : handle(other.handle) { other.handle = {}; } |
| 630 |
nothing calls this directly
no outgoing calls
no test coverage detected