Skip to content

Commit 39831b3

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 100a31f commit 39831b3

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
@@ -1949,7 +1949,7 @@
19491949
\tcode{template<class... T>} \tcode{struct common_type;}
19501950
&
19511951
Unless this trait is specialized,
1952-
the member \tcode{type} is defined or omitted as specified below.
1952+
the member \tcode{type} is declared or omitted as specified below.
19531953
If it is omitted, there shall be no member \tcode{type}.
19541954
Each type in the template parameter pack \tcode{T} shall be
19551955
complete, \cv{}~\keyword{void}, or an array of unknown bound. \\ \rowsep
@@ -1965,7 +1965,7 @@
19651965

19661966
\tcode{template<class... T>} \tcode{struct \libglobal{common_reference};}
19671967
&
1968-
The member \grammarterm{typedef-name} \tcode{type} is defined or omitted
1968+
The member \grammarterm{typedef-name} \tcode{type} is declared or omitted
19691969
as specified below. Each type in the parameter pack \tcode{T} shall
19701970
be complete or \cv{} \keyword{void}. \\ \rowsep
19711971

@@ -2075,7 +2075,7 @@
20752075

20762076
\pnum
20772077
For the \tcode{common_type} trait applied to a template parameter pack \tcode{T} of types,
2078-
the member \tcode{type} shall be either defined or not present as follows:
2078+
the member \tcode{type} shall be either declared or not present as follows:
20792079

20802080
\begin{itemize}
20812081
\item If \tcode{sizeof...(T)} is zero, there shall be no member \tcode{type}.
@@ -2148,7 +2148,7 @@
21482148

21492149
\pnum
21502150
For the \tcode{common_reference} trait applied to a parameter pack
2151-
\tcode{T} of types, the member \tcode{type} shall be either defined or not
2151+
\tcode{T} of types, the member \tcode{type} shall be either declared or not
21522152
present as follows:
21532153
\begin{itemize}
21542154
\item If \tcode{sizeof...(T)} is zero, there shall be no member \tcode{type}.
@@ -2218,7 +2218,7 @@
22182218

22192219
\pnum
22202220
\begin{example}
2221-
Given these definitions:
2221+
Given these declarations:
22222222
\begin{codeblock}
22232223
using PF1 = bool (&)();
22242224
using PF2 = short (*)(long);

0 commit comments

Comments
 (0)