From 12fde4af201017e49efd39178126f661a04dbb94 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Sun, 7 Jul 2024 13:28:06 -0700 Subject: [PATCH] fix HTML escape issue --- execution.bs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/execution.bs b/execution.bs index 136d26a..6440161 100644 --- a/execution.bs +++ b/execution.bs @@ -1,9 +1,9 @@
 Title: `std::execution`
 H1: std::execution
-Shortname: P2300
-Revision: 10
-Status: P
+Shortname: D2300
+Revision: 10.a
+Status: D
 Group: WG21
 Date: 2024-06-28
 Audience: SG1, LEWG
@@ -7628,7 +7628,7 @@ namespace std::execution {
             return let_value(
               schedule(sch),
               [sndr = std::forward_like<OutSndr>(sndr)]() mutable
-                noexcept(is_nothrow_move_constructible_v) {
+                noexcept(is_nothrow_move_constructible_v<decay_t>) {
                 return std::move(sndr);
               });
             
@@ -9919,7 +9919,7 @@ void finish(); 2.
     template<class OtherPromise>
       requires (!same_as<OtherPromise, void>)
-    void set_continuation(coroutine_handle h) noexcept;
+    void set_continuation(coroutine_handle<OtherPromise> h) noexcept;
     
1. Effects: Equivalent to: