| 93 | template <class _Error> |
| 94 | STDEXEC_ATTRIBUTE(always_inline) |
| 95 | constexpr void set_error(_Error&& __err) noexcept |
| 96 | { |
| 97 | __sh_state_->__complete(set_error_t(), static_cast<_Error&&>(__err)); |
| 98 | } |
| 99 | |
| 100 | STDEXEC_ATTRIBUTE(always_inline) |
| 101 | constexpr void set_stopped() noexcept |
nothing calls this directly
no test coverage detected