| 44 | ::std::coroutine_handle<> awaiter {::std::noop_coroutine()}; |
| 45 | }; |
| 46 | SimpleTask(::std::coroutine_handle<promise_type> handle) { |
| 47 | this->handle = handle; |
| 48 | } |
| 49 | SimpleTask(SimpleTask&& other) { |
| 50 | handle = ::std::exchange(other.handle, nullptr); |
| 51 | } |
nothing calls this directly
no outgoing calls
no test coverage detected