Skip to content

Commit f9ce3d2

Browse files
committed
[tuple.helper, variant.helper] Change "specialization of *class*" to "specialization of *template*".
The containing lines were too long (cf. #693), and the change is a mild increase in pedantic correctness.
1 parent a9f048a commit f9ce3d2

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

source/utilities.tex

+8-7
Original file line numberDiff line numberDiff line change
@@ -2157,7 +2157,7 @@
21572157

21582158
\begin{itemdescr}
21592159
\pnum
2160-
\remarks All specializations of \tcode{tuple_size<T>} shall meet the
2160+
\remarks All specializations of \tcode{tuple_size} shall meet the
21612161
\tcode{UnaryTypeTrait} requirements~(\ref{meta.rqmts}) with a
21622162
base characteristic of \tcode{integral_constant<size_t, N>}
21632163
for some \tcode{N}.
@@ -2172,10 +2172,10 @@
21722172
\indexlibrary{\idxcode{tuple_element}}%
21732173
\begin{itemdecl}
21742174
template <size_t I, class... Types>
2175-
class tuple_element<I, tuple<Types...>> {
2176-
public:
2177-
using type = TI;
2178-
};
2175+
class tuple_element<I, tuple<Types...>> {
2176+
public:
2177+
using type = TI;
2178+
};
21792179
\end{itemdecl}
21802180

21812181
\begin{itemdescr}
@@ -4844,8 +4844,9 @@
48444844
\begin{itemdescr}
48454845
\pnum
48464846
\remarks
4847-
All specializations of \tcode{variant_size<T>} shall meet the
4848-
\tcode{UnaryTypeTrait} requirements~(\ref{meta.rqmts}) with a base characteristic of \tcode{integral_constant<size_t, N>} for some \tcode{N}.
4847+
All specializations of \tcode{variant_size} shall meet the
4848+
\tcode{UnaryTypeTrait} requirements~(\ref{meta.rqmts})
4849+
with a base characteristic of \tcode{integral_constant<size_t, N>} for some \tcode{N}.
48494850
\end{itemdescr}
48504851

48514852
\indexlibrary{\idxcode{variant_size}}%

0 commit comments

Comments
 (0)