| 722 | |
| 723 | template <class _Tag, class... _Ts> |
| 724 | void __complete(_Ts&&... __ts) noexcept |
| 725 | { |
| 726 | std::destroy_at(std::addressof(__callback_)); |
| 727 | _Tag{}(std::move(__rcvr_), static_cast<_Ts&&>(__ts)...); |
| 728 | } |
| 729 | }; |
| 730 | |
| 731 | struct __spawn_future_impl : __sexpr_defaults |