| 161 | |
| 162 | template <class... _Args> |
| 163 | void set_value(_Args&&... __args) noexcept |
| 164 | { |
| 165 | __op_->notify(set_value_t(), static_cast<_Args&&>(__args)...); |
| 166 | } |
| 167 | |
| 168 | template <class _Error> |
| 169 | void set_error(_Error&& __err) noexcept |
nothing calls this directly
no test coverage detected