diff --git a/include/unifex/spawn_future.hpp b/include/unifex/spawn_future.hpp index 434f7843..0cebd678 100644 --- a/include/unifex/spawn_future.hpp +++ b/include/unifex/spawn_future.hpp @@ -821,8 +821,8 @@ struct [[nodiscard]] _future::type final { static constexpr blocking_kind blocking = sender_traits::blocking; - static constexpr bool is_always_scheduler_affine - = sender_traits::is_always_scheduler_affine; + static constexpr bool is_always_scheduler_affine = + sender_traits::is_always_scheduler_affine; explicit type( Scope& scope, @@ -843,7 +843,8 @@ struct [[nodiscard]] _future::type final { return connect(std::move(self).sender_, static_cast(receiver)); } - friend blocking_kind tag_invoke(tag_t, const type& sender) noexcept { + friend blocking_kind + tag_invoke(tag_t, const type& sender) noexcept { return unifex::blocking(sender.sender_); } };