Skip to content

Commit 48ecf19

Browse files
committed
fix
1 parent d493c15 commit 48ecf19

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/beman/execution26/detail/awaitable_sender.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
namespace beman::execution26::detail {
1414
template <class Sndr, class Promise>
1515
concept awaitable_sender =
16-
::beman::execution26::single_sender<Sndr, ::beman::execution26::env_of_t<Promise>> && requires(Promise& prom) {
16+
::beman::execution26::detail::single_sender<Sndr, ::beman::execution26::env_of_t<Promise>> &&
17+
requires(Promise& prom) {
1718
{ prom.unhandled_stopped() } -> ::std::convertible_to<::std::coroutine_handle<>>;
1819
};
1920
} // namespace beman::execution26::detail

0 commit comments

Comments
 (0)