| 44 | |
| 45 | template <class _Error> |
| 46 | constexpr void set_error(_Error __err) noexcept |
| 47 | { |
| 48 | STDEXEC::set_value(static_cast<_Receiver&&>(__upstream_), |
| 49 | set_error_t(), |
| 50 | static_cast<_Error&&>(__err)); |
| 51 | } |
| 52 | |
| 53 | constexpr void set_stopped() noexcept |
| 54 | { |
nothing calls this directly
no test coverage detected