Skip to content

Commit 6b81b72

Browse files
burblebeetkoeppe
authored andcommitted
LWG4227 Missing noexcept operator in [exec.when.all]
1 parent 93479fd commit 6b81b72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/exec.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4196,7 +4196,7 @@
41964196
is initialized with a callable object
41974197
equivalent to the following lambda expression:
41984198
\begin{codeblock}
4199-
[]<class Sndr, class Rcvr>(Sndr&& sndr, Rcvr& rcvr) noexcept(@$e$@) -> decltype(@$e$@) {
4199+
[]<class Sndr, class Rcvr>(Sndr&& sndr, Rcvr& rcvr) noexcept(noexcept(@$e$@)) -> decltype(@$e$@) {
42004200
return @$e$@;
42014201
}
42024202
\end{codeblock}

0 commit comments

Comments
 (0)