Skip to content

Commit

Permalink
Fix errors in 4200 discussion and resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
jwakely committed Feb 6, 2025
1 parent b73bf6e commit 41e9185
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xml/issue4200.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ The current defn of the `operation_state` concept is:
template<class O>
concept operation_state =
derived_from<typename O::operation_state_concept, operation_state_t> &&
is_object_v<O> &&
requires (O& o) {
{ start(o) } noexcept;
};
Expand Down Expand Up @@ -47,7 +48,7 @@ template<class O>
derived_from<typename O::operation_state_concept, operation_state_t> &&
<del>is_object_v&lt;O&gt; &amp;&amp;</del>
requires (O&amp; o) {
<del>{</del> start(o) <del>} noexcept;</del>
<del>{</del> start(o) <del>} noexcept</del>;
};
</code></pre></blockquote>
</li>
Expand Down

0 comments on commit 41e9185

Please sign in to comment.