Skip to content

Commit a027f33

Browse files
burblebeetkoeppe
authored andcommitted
LWG4200 The operation_state concept can be simplified
1 parent bf1933b commit a027f33

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

source/exec.tex

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1189,9 +1189,8 @@
11891189
template<class O>
11901190
concept @\deflibconcept{operation_state}@ =
11911191
@\libconcept{derived_from}@<typename O::operation_state_concept, operation_state_t> &&
1192-
is_object_v<O> &&
11931192
requires (O& o) {
1194-
{ start(o) } noexcept;
1193+
start(o);
11951194
};
11961195
}
11971196
\end{codeblock}

0 commit comments

Comments
 (0)