Skip to content

Commit 939341a

Browse files
committed
Merge remote-tracking branch 'origin/main' into inline_coroutine_allocation
2 parents bed5e17 + 3680678 commit 939341a

34 files changed

Lines changed: 1217 additions & 1927 deletions

.github/workflows/style.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ jobs:
2323
- run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
2424
- shell: bash
2525
run: |
26+
clang-format-21 --version
2627
git ls-files '*.[ch]' '*.[ch]pp' '*.cu' '*.cuh' | xargs clang-format-21 --dry-run --Werror

examples/benchmark/fibonacci.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ auto serial_fib(long n) -> long
2929
return n < 2 ? n : serial_fib(n - 1) + serial_fib(n - 2);
3030
}
3131

32-
template <class... Ts>
32+
template <class... CompletionSigs>
3333
using any_sender_of =
34-
exec::any_receiver_ref<stdexec::completion_signatures<Ts...>>::template any_sender<>;
34+
exec::any_sender<exec::any_receiver<stdexec::completion_signatures<CompletionSigs...>>>;
3535

3636
using fib_sender = any_sender_of<stdexec::set_value_t(long)>;
3737

0 commit comments

Comments
 (0)