Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion include/exec/libdispatch_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
# endif

# include "../stdexec/execution.hpp"
# include "sender_for.hpp"
# include <dispatch/dispatch.h>

namespace experimental::execution
Expand Down Expand Up @@ -91,7 +92,7 @@ namespace experimental::execution
struct domain
{
// transform the generic bulk sender into a parallel libdispatch bulk sender
template <STDEXEC::sender_expr_for<STDEXEC::bulk_t> Sender, class Env>
template <sender_for<STDEXEC::bulk_t> Sender, class Env>
auto transform_sender(STDEXEC::set_value_t, Sender &&sndr, Env const &env) const noexcept
{
if constexpr (STDEXEC::__completes_on<Sender, libdispatch_scheduler, Env>)
Expand Down
Loading