Skip to content

Commit 085b3f0

Browse files
committed
Fixup for preceding change: some forgotten V1, V2, VTypes
1 parent 7e43fec commit 085b3f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/utilities.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@
850850
\indexlibrary{\idxcode{make_pair}}%
851851
\begin{itemdecl}
852852
template<class T1, class T2>
853-
constexpr pair<V1, V2> make_pair(T1&& x, T2&& y);
853+
constexpr pair<unwrap_ref_decay_t<T1>, unwrap_ref_decay_t<T2>> make_pair(T1&& x, T2&& y);
854854
\end{itemdecl}
855855

856856
\begin{itemdescr}
@@ -997,7 +997,7 @@
997997
inline constexpr @\unspec@ ignore;
998998

999999
template<class... TTypes>
1000-
constexpr tuple<VTypes...> make_tuple(TTypes&&...);
1000+
constexpr tuple<unwrap_ref_decay_t<TTypes>...> make_tuple(TTypes&&...);
10011001

10021002
template<class... TTypes>
10031003
constexpr tuple<TTypes&&...> forward_as_tuple(TTypes&&...) noexcept;
@@ -1596,7 +1596,7 @@
15961596
\indexlibrary{\idxcode{tuple}!\idxcode{make_tuple}}%
15971597
\begin{itemdecl}
15981598
template<class... TTypes>
1599-
constexpr tuple<VTypes...> make_tuple(TTypes&&... t);
1599+
constexpr tuple<unwrap_ref_decay_t<TTypes>...> make_tuple(TTypes&&... t);
16001600
\end{itemdecl}
16011601

16021602
\begin{itemdescr}

0 commit comments

Comments
 (0)