File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
<pre class='metadata'>
2
2
Title : `std::execution`
3
3
H1 : <code>std::execution</code>
4
- Shortname : P2300
5
- Revision : 10
6
- Status : P
4
+ Shortname : D2300
5
+ Revision : 10.a
6
+ Status : D
7
7
Group : WG21
8
8
Date : 2024-06-28
9
9
Audience : SG1, LEWG
@@ -7628,7 +7628,7 @@ namespace std::execution {
7628
7628
return let_value(
7629
7629
schedule(sch),
7630
7630
[sndr = std::forward_like<OutSndr>(sndr)] () mutable
7631
- noexcept(is_nothrow_move_constructible_v<OutSndr>) {
7631
+ noexcept(is_nothrow_move_constructible_v<decay_t <OutSndr> >) {
7632
7632
return std::move(sndr);
7633
7633
});
7634
7634
</pre>
@@ -9919,7 +9919,7 @@ void finish();
9919
9919
2. <pre highlight="c++">
9920
9920
template<class OtherPromise>
9921
9921
requires (!same_as<OtherPromise, void>)
9922
- void set_continuation(coroutine_handle< OtherPromise> h) noexcept;
9922
+ void set_continuation(coroutine_handle< OtherPromise> h) noexcept;
9923
9923
</pre>
9924
9924
9925
9925
1. <i> Effects:</i> Equivalent to:
You can’t perform that action at this time.
0 commit comments