Skip to content

Commit 41e9185

Browse files
committed
Fix errors in 4200 discussion and resolution
1 parent b73bf6e commit 41e9185

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

xml/issue4200.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ The current defn of the `operation_state` concept is:
1919
template<class O>
2020
concept operation_state =
2121
derived_from<typename O::operation_state_concept, operation_state_t> &&
22+
is_object_v<O> &&
2223
requires (O& o) {
2324
{ start(o) } noexcept;
2425
};
@@ -47,7 +48,7 @@ template<class O>
4748
derived_from<typename O::operation_state_concept, operation_state_t> &&
4849
<del>is_object_v&lt;O&gt; &amp;&amp;</del>
4950
requires (O&amp; o) {
50-
<del>{</del> start(o) <del>} noexcept;</del>
51+
<del>{</del> start(o) <del>} noexcept</del>;
5152
};
5253
</code></pre></blockquote>
5354
</li>

0 commit comments

Comments
 (0)