Skip to content

Commit 9ae00ff

Browse files
committed
Merge pull request #583 from tkoeppe/placeholder
[lib-intro, utilities] Apply \placeholder macro
2 parents 776c1fe + 4926f71 commit 9ae00ff

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

source/lib-intro.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1090,8 +1090,8 @@
10901090

10911091
\pnum
10921092
Except as noted in Clauses~\ref{\firstlibchapter} through~\ref{\lastlibchapter}
1093-
and Annex~\ref{depr}, the contents of each header \tcode{c\textit{name}} shall
1094-
be the same as that of the corresponding header \tcode{\textit{name}.h}, as
1093+
and Annex~\ref{depr}, the contents of each header \tcode{c\placeholder{name}} shall
1094+
be the same as that of the corresponding header \tcode{\placeholder{name}.h}, as
10951095
specified in the C standard library~(\ref{intro.refs}) or the C Unicode TR, as
10961096
appropriate, as if by inclusion. In the \Cpp standard library, however, the
10971097
declarations (except for names which are defined as macros in C) are within
@@ -1123,7 +1123,7 @@
11231123

11241124
\pnum
11251125
\ref{depr.c.headers}, C standard library headers, describes the effects of using
1126-
the \tcode{\textit{name}.h} (C header) form in a \Cpp program.\footnote{ The
1126+
the \tcode{\placeholder{name}.h} (C header) form in a \Cpp program.\footnote{ The
11271127
\tcode{".h"} headers dump all their names into the global namespace, whereas the
11281128
newer forms keep their names in namespace \tcode{std}. Therefore, the newer
11291129
forms are the preferred forms for all uses except for \Cpp programs which are

source/utilities.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,15 +1000,15 @@
10001000
const @\unspec@ ignore;
10011001

10021002
template <class... Types>
1003-
constexpr tuple<@\textit{VTypes}@...> make_tuple(Types&&...);
1003+
constexpr tuple<@\placeholder{VTypes}@...> make_tuple(Types&&...);
10041004
template <class... Types>
10051005
constexpr tuple<Types&&...> forward_as_tuple(Types&&...) noexcept;
10061006

10071007
template<class... Types>
10081008
constexpr tuple<Types&...> tie(Types&...) noexcept;
10091009

10101010
template <class... Tuples>
1011-
constexpr tuple<@\textit{Ctypes}@...> tuple_cat(Tuples&&...);
1011+
constexpr tuple<@\placeholder{Ctypes}@...> tuple_cat(Tuples&&...);
10121012

10131013
// \ref{tuple.helper}, tuple helper classes:
10141014
template <class T> class tuple_size; // undefined
@@ -1561,7 +1561,7 @@
15611561
\indexlibrary{\idxcode{tuple}!\idxcode{make_tuple}}%
15621562
\begin{itemdecl}
15631563
template<class... Types>
1564-
constexpr tuple<@\textit{VTypes}@...> make_tuple(Types&&... t);
1564+
constexpr tuple<@\placeholder{VTypes}@...> make_tuple(Types&&... t);
15651565
\end{itemdecl}
15661566

15671567
\begin{itemdescr} \pnum Let \tcode{$U_i$} be \tcode{decay_t<$T_i$>} for each
@@ -1639,7 +1639,7 @@
16391639
\indexlibrary{\idxcode{tuple_cat}}
16401640
\begin{itemdecl}
16411641
template <class... Tuples>
1642-
constexpr tuple<@\textit{CTypes}@...> tuple_cat(Tuples&&... tpls);
1642+
constexpr tuple<@\placeholder{CTypes}@...> tuple_cat(Tuples&&... tpls);
16431643
\end{itemdecl}
16441644

16451645
\begin{itemdescr}
@@ -1660,7 +1660,7 @@
16601660
\tcode{is_constructible<$A_{ik}$, $cv_i A_{ik}$\&\&>::value == true}.
16611661

16621662
\pnum
1663-
\remarks The types in \tcode{\textit{Ctypes}} shall be equal to the ordered
1663+
\remarks The types in \tcode{\placeholder{Ctypes}} shall be equal to the ordered
16641664
sequence of the extended types
16651665
\tcode{$Args_0$..., $Args_1$...,} ... \tcode{$Args_{n-1}$...}, where $n$ is
16661666
equal to \tcode{sizeof...(Tuples)}. Let \tcode{$e_i$...} be the $i^{th}$

0 commit comments

Comments
 (0)