From e114792f5fe3c3e7017d82b3fd365b7c8498201c Mon Sep 17 00:00:00 2001 From: ericniebler Date: Fri, 14 Jun 2024 03:16:48 +0000 Subject: [PATCH] Publish: fix a copy/paste error in the `operation_state` concept c2cec09ac0660ecab978b7e40e53eeb9ff6cba1b --- execution.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/execution.html b/execution.html index 13976fa..cfe6057 100644 --- a/execution.html +++ b/execution.html @@ -2386,7 +2386,7 @@

P2300R9
std::execution

-

Published Proposal,

+

Published Proposal,

Authors: @@ -8381,7 +8381,7 @@

namespace std::execution { template<class O> concept operation_state = - derived_from<typename Rcvr::operation_state_concept, operation_state_t> && + derived_from<typename O::operation_state_concept, operation_state_t> && is_object_v<O> && requires (O& o) { { start(o) } noexcept;