We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d2595e commit 909b6a3Copy full SHA for 909b6a3
include/beman/execution/detail/spawn_future.hpp
@@ -153,7 +153,7 @@ class spawn_future_t {
153
template <::beman::execution::sender Sndr, ::beman::execution::async_scope_token Tok, typename Ev>
154
requires ::beman::execution::detail::queryable<::std::remove_cvref_t<Ev>>
155
auto operator()(Sndr&& sndr, Tok&& tok, Ev&& ev) const {
156
- auto make{[&] -> decltype(auto) { //-dk:TODO while decltype(auto) instead of auto?
+ auto make{[&]() -> decltype(auto) { //-dk:TODO while decltype(auto) instead of auto?
157
return tok.wrap(::std::forward<Sndr>(sndr));
158
}};
159
using sndr_t = decltype(make());
0 commit comments