Skip to content

Commit 5dfeffa

Browse files
committed
another attempt at working around a clang issue
1 parent 36ccc8b commit 5dfeffa

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ FetchContent_Declare(
3636
execution
3737
# SOURCE_DIR ${CMAKE_SOURCE_DIR}/../execution
3838
GIT_REPOSITORY https://github.com/bemanproject/execution
39-
GIT_TAG 4e5e6ac
39+
GIT_TAG 5cb179e
4040
)
4141
FetchContent_MakeAvailable(execution)
4242

docs/P3941-affinity.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ meet its objective at run-time.
3131

3232
# Change History
3333

34+
## R2
35+
36+
- fixed typo in the wording for `affine_on::transform_sender`
37+
3438
## R1
3539

3640
- added wording
@@ -548,13 +552,13 @@ Let `sndr` and `ev` be subexpressions such that `Sndr` is
548552
`decltype((sndr))`. If <code><i>sender-for</i>&lt;Sndr,
549553
affine_on_t&gt;</code> is `false`, then the expression
550554
`affine_on.transform_sender(sndr, ev)` is ill-formed; otherwise,
551-
if otherwise, it is equal to:
555+
it is equal to:
552556

553557
```
554558
auto&[_, _, child] = sndr;
555559
using child_tag_t = tag_of_t<remove_cvref_t<decltype(child)>>;
556-
if constexpr (requires(const child_tag_t& t){ t.affine_on(child, env); })
557-
return t.affine_on(child, env);
560+
if constexpr (requires(const child_tag_t& t){ t.affine_on(child, ev); })
561+
return t.affine_on(child, ev);
558562
else
559563
return write_env(
560564
schedule_from(get_scheduler(get_env(ev)), write_env(std::move(child), ev)),
@@ -781,7 +785,7 @@ then ]{.add} <code>completion_signatures_of_t&lt;<i>run-loop-sender</i>[, E]{.ad
781785

782786
::: rm
783787
```
784-
completion_signatures<set_value_t(), set_error_t(exception_ptr), set_stopped_t()>`
788+
completion_signatures<set_value_t(), set_error_t(exception_ptr), set_stopped_t()>
785789
```
786790
:::
787791

0 commit comments

Comments
 (0)