Skip to content

Commit

Permalink
Merge pull request #245 from brycelelbach/patch-1
Browse files Browse the repository at this point in the history
Remove erroneous scheduler parameter to a `when_all` call.
  • Loading branch information
ericniebler authored Jun 11, 2024
2 parents f5cb636 + 315ab1a commit a920f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion execution.bs
Original file line number Diff line number Diff line change
Expand Up @@ -3485,7 +3485,7 @@ execution::scheduler auto sched = thread_pool.scheduler();
execution::sender auto sends_1 = ...;
execution::sender auto sends_abc = ...;

execution::sender auto both = execution::when_all(sched,
execution::sender auto both = execution::when_all(
sends_1,
sends_abc
);
Expand Down

0 comments on commit a920f2e

Please sign in to comment.