Skip to content

Commit c2cec09

Browse files
authored
fix a copy/paste error in the operation_state concept
1 parent a920f2e commit c2cec09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

execution.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6299,7 +6299,7 @@ namespace std::execution {
62996299
namespace std::execution {
63006300
template<class O>
63016301
concept operation_state =
6302-
derived_from<typename Rcvr::operation_state_concept, operation_state_t> &&
6302+
derived_from<typename O::operation_state_concept, operation_state_t> &&
63036303
is_object_v<O> &&
63046304
requires (O& o) {
63056305
{ start(o) } noexcept;

0 commit comments

Comments
 (0)