| 395 | } |
| 396 | |
| 397 | void set_error(std::exception_ptr __eptr) noexcept |
| 398 | { |
| 399 | __eptr_ = std::move(__eptr); |
| 400 | STDEXEC::__coroutine_resume_nothrow(__parent_); |
| 401 | } |
| 402 | |
| 403 | void set_stopped() noexcept |
| 404 | { |
nothing calls this directly
no test coverage detected