Skip to content

Commit c5029dc

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 9bffd4a commit c5029dc

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
@@ -1954,7 +1954,7 @@
19541954
\tcode{template<class... T>} \tcode{struct common_type;}
19551955
&
19561956
Unless this trait is specialized,
1957-
the member \tcode{type} is defined or omitted as specified below.
1957+
the member \tcode{type} is declared or omitted as specified below.
19581958
If it is omitted, there shall be no member \tcode{type}.
19591959
Each type in the template parameter pack \tcode{T} shall be
19601960
complete, \cv{}~\keyword{void}, or an array of unknown bound. \\ \rowsep
@@ -1972,7 +1972,7 @@
19721972
\indexlibraryglobal{common_reference}%
19731973
\tcode{template<class... T>} \tcode{struct common_reference;}
19741974
&
1975-
The member \grammarterm{typedef-name} \tcode{type} is defined or omitted
1975+
The member \grammarterm{typedef-name} \tcode{type} is declared or omitted
19761976
as specified below. Each type in the parameter pack \tcode{T} shall
19771977
be complete or \cv{} \keyword{void}. \\ \rowsep
19781978

@@ -2086,7 +2086,7 @@
20862086

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

20912091
\begin{itemize}
20922092
\item If \tcode{sizeof...(T)} is zero, there shall be no member \tcode{type}.
@@ -2159,7 +2159,7 @@
21592159

21602160
\pnum
21612161
For the \tcode{common_reference} trait applied to a parameter pack
2162-
\tcode{T} of types, the member \tcode{type} shall be either defined or not
2162+
\tcode{T} of types, the member \tcode{type} shall be either declared or not
21632163
present as follows:
21642164
\begin{itemize}
21652165
\item If \tcode{sizeof...(T)} is zero, there shall be no member \tcode{type}.
@@ -2229,7 +2229,7 @@
22292229

22302230
\pnum
22312231
\begin{example}
2232-
Given these definitions:
2232+
Given these declarations:
22332233
\begin{codeblock}
22342234
using PF1 = bool (&)();
22352235
using PF2 = short (*)(long);

0 commit comments

Comments
 (0)