Skip to content

Commit 938c089

Browse files
JohelEGPzygoloid
authored andcommitted
[thread] Add missing _v's to uses of type traits in Mandates elements.
1 parent 1a26d49 commit 938c089

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

source/threads.tex

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@
12131213
\mandates
12141214
The following are all \tcode{true}:
12151215
\begin{itemize}
1216-
\item \tcode{is_constructible_v<decay_t<F>,F>},
1216+
\item \tcode{is_constructible_v<decay_t<F>, F>},
12171217
\item \tcode{(is_constructible_v<decay_t<Args>, Args> \&\& ...)},
12181218
\item \tcode{is_move_constructible_v<decay_t<F>>},
12191219
\item \tcode{(is_move_constructible_v<decay_t<Args>> \&\& ...)}, and
@@ -1545,10 +1545,10 @@
15451545
\mandates
15461546
The following are all \tcode{true}:
15471547
\begin{itemize}
1548-
\item \tcode{is_constructible<decay_t<F>, F>},
1549-
\item \tcode{(is_constructible<decay_t<Args>, Args> \&\& ...)},
1550-
\item \tcode{is_move_constructible<decay_t<F>>},
1551-
\item \tcode{(is_move_constructible<decay_t<Args>> \&\& ...)}, and
1548+
\item \tcode{is_constructible_v<decay_t<F>, F>},
1549+
\item \tcode{(is_constructible_v<decay_t<Args>, Args> \&\& ...)},
1550+
\item \tcode{is_move_constructible_v<decay_t<F>>},
1551+
\item \tcode{(is_move_constructible_v<decay_t<Args>> \&\& ...)}, and
15521552
\item \tcode{is_invocable_v<decay_t<F>, decay_t<Args>...> ||} \\ \tcode{is_invocable_v<decay_t<F>, stop_token, decay_t<Args>...>}.
15531553
\end{itemize}
15541554

@@ -7063,10 +7063,10 @@
70637063
\mandates
70647064
The following are all \tcode{true}:
70657065
\begin{itemize}
7066-
\item \tcode{is_constructible<decay_t<F>, F>},
7067-
\item \tcode{(is_constructible<decay_t<Args>, Args> \&\&...)},
7068-
\item \tcode{is_move_constructible<decay_t<F>>},
7069-
\item \tcode{(is_move_constructible<decay_t<Args>> \&\&...)}, and
7066+
\item \tcode{is_constructible_v<decay_t<F>, F>},
7067+
\item \tcode{(is_constructible_v<decay_t<Args>, Args> \&\&...)},
7068+
\item \tcode{is_move_constructible_v<decay_t<F>>},
7069+
\item \tcode{(is_move_constructible_v<decay_t<Args>> \&\&...)}, and
70707070
\item \tcode{is_invocable_v<decay_t<F>, decay_t<Args>...>}.
70717071
\end{itemize}
70727072

0 commit comments

Comments
 (0)