diff --git a/include/beman/execution/detail/sender_awaitable.hpp b/include/beman/execution/detail/sender_awaitable.hpp index 63f6ab30..2078f053 100644 --- a/include/beman/execution/detail/sender_awaitable.hpp +++ b/include/beman/execution/detail/sender_awaitable.hpp @@ -82,7 +82,7 @@ class sender_awaitable { if constexpr (::std::is_void_v) { return; } else { - return ::std::get(result); + return ::std::get(std::move(result)); } } };