Skip to content

Commit 6a74c1b

Browse files
[meta.trans.other] Use "declare" for typedef-names
In the example, it seems a bit verbose to say "declarations and definitions".
1 parent 4fdd816 commit 6a74c1b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source/meta.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1935,7 +1935,7 @@
19351935
\tcode{template<class... T>} \tcode{struct common_type;}
19361936
&
19371937
Unless this trait is specialized (as specified in Note B, below),
1938-
the member \tcode{type} is defined or omitted as specified in Note A, below.
1938+
the member \tcode{type} is declared or omitted as specified in Note A, below.
19391939
If it is omitted, there shall be no member \tcode{type}.
19401940
Each type in the template parameter pack \tcode{T} shall be
19411941
complete, \cv{}~\keyword{void}, or an array of unknown bound. \\ \rowsep
@@ -1953,7 +1953,7 @@
19531953
\indexlibraryglobal{common_reference}%
19541954
\tcode{template<class... T>} \tcode{struct common_reference;}
19551955
&
1956-
The member \grammarterm{typedef-name} \tcode{type} is defined or omitted
1956+
The member \grammarterm{typedef-name} \tcode{type} is declared or omitted
19571957
as specified in Note C, below. Each type in the parameter pack \tcode{T} shall
19581958
be complete or \cv{} \keyword{void}. \\ \rowsep
19591959

@@ -2068,7 +2068,7 @@
20682068
\pnum
20692069
Note A:
20702070
For the \tcode{common_type} trait applied to a template parameter pack \tcode{T} of types,
2071-
the member \tcode{type} shall be either defined or not present as follows:
2071+
the member \tcode{type} shall be either declared or not present as follows:
20722072

20732073
\begin{itemize}
20742074
\item If \tcode{sizeof...(T)} is zero, there shall be no member \tcode{type}.
@@ -2141,7 +2141,7 @@
21412141

21422142
\pnum
21432143
Note C: For the \tcode{common_reference} trait applied to a parameter pack
2144-
\tcode{T} of types, the member \tcode{type} shall be either defined or not
2144+
\tcode{T} of types, the member \tcode{type} shall be either declared or not
21452145
present as follows:
21462146
\begin{itemize}
21472147
\item If \tcode{sizeof...(T)} is zero, there shall be no member \tcode{type}.
@@ -2211,7 +2211,7 @@
22112211

22122212
\pnum
22132213
\begin{example}
2214-
Given these definitions:
2214+
Given these declarations:
22152215
\begin{codeblock}
22162216
using PF1 = bool (&)();
22172217
using PF2 = short (*)(long);

0 commit comments

Comments
 (0)