| 785 | |
| 786 | template <class _Error> |
| 787 | void set_error(_Error&& __error) noexcept |
| 788 | { |
| 789 | __op_->store_error(static_cast<_Error&&>(__error)); |
| 790 | __next_seq_op_->nested_sequence_break(); |
| 791 | } |
| 792 | |
| 793 | void set_stopped() noexcept |
| 794 | { |
nothing calls this directly
no test coverage detected