Skip to content

Commit e43fc56

Browse files
authored
added a missing move (#179)
1 parent 4a55162 commit e43fc56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/beman/execution/detail/sender_awaitable.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class sender_awaitable {
8282
if constexpr (::std::is_void_v<value_type>) {
8383
return;
8484
} else {
85-
return ::std::get<value_type>(result);
85+
return ::std::get<value_type>(std::move(result));
8686
}
8787
}
8888
};

0 commit comments

Comments
 (0)