Skip to content

Commit 12fde4a

Browse files
committed
fix HTML escape issue
1 parent aaa4d14 commit 12fde4a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

execution.bs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<pre class='metadata'>
22
Title: `std::execution`
33
H1: <code>std::execution</code>
4-
Shortname: P2300
5-
Revision: 10
6-
Status: P
4+
Shortname: D2300
5+
Revision: 10.a
6+
Status: D
77
Group: WG21
88
Date: 2024-06-28
99
Audience: SG1, LEWG
@@ -7628,7 +7628,7 @@ namespace std::execution {
76287628
return let_value(
76297629
schedule(sch),
76307630
[sndr = std::forward_like&lt;OutSndr>(sndr)]() mutable
7631-
noexcept(is_nothrow_move_constructible_v<OutSndr>) {
7631+
noexcept(is_nothrow_move_constructible_v&lt;decay_t<OutSndr>>) {
76327632
return std::move(sndr);
76337633
});
76347634
</pre>
@@ -9919,7 +9919,7 @@ void finish();
99199919
2. <pre highlight="c++">
99209920
template&lt;class OtherPromise>
99219921
requires (!same_as&lt;OtherPromise, void>)
9922-
void set_continuation(coroutine_handle<OtherPromise> h) noexcept;
9922+
void set_continuation(coroutine_handle&lt;OtherPromise> h) noexcept;
99239923
</pre>
99249924

99259925
1. <i>Effects:</i> Equivalent to:

0 commit comments

Comments
 (0)