Skip to content

Commit 3aca76e

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 7e0ce0e commit 3aca76e

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
@@ -2294,7 +2294,7 @@
22942294
\tcode{template<class... T>} \tcode{struct common_type;}
22952295
&
22962296
Unless this trait is specialized,
2297-
the member \tcode{type} is defined or omitted as specified below.
2297+
the member \tcode{type} is declared or omitted as specified below.
22982298
If it is omitted, there shall be no member \tcode{type}.
22992299
Each type in the template parameter pack \tcode{T} shall be
23002300
complete, \cv{}~\keyword{void}, or an array of unknown bound. \\ \rowsep
@@ -2310,7 +2310,7 @@
23102310

23112311
\tcode{template<class... T>} \tcode{struct \libglobal{common_reference};}
23122312
&
2313-
The member \grammarterm{typedef-name} \tcode{type} is defined or omitted
2313+
The member \grammarterm{typedef-name} \tcode{type} is declared or omitted
23142314
as specified below. Each type in the parameter pack \tcode{T} shall
23152315
be complete or \cv{} \keyword{void}. \\ \rowsep
23162316

@@ -2446,7 +2446,7 @@
24462446

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

24512451
\begin{itemize}
24522452
\item If \tcode{sizeof...(T)} is zero, there shall be no member \tcode{type}.
@@ -2519,7 +2519,7 @@
25192519

25202520
\pnum
25212521
For the \tcode{common_reference} trait applied to a parameter pack
2522-
\tcode{T} of types, the member \tcode{type} shall be either defined or not
2522+
\tcode{T} of types, the member \tcode{type} shall be either declared or not
25232523
present as follows:
25242524
\begin{itemize}
25252525
\item If \tcode{sizeof...(T)} is zero, there shall be no member \tcode{type}.
@@ -2589,7 +2589,7 @@
25892589

25902590
\pnum
25912591
\begin{example}
2592-
Given these definitions:
2592+
Given these declarations:
25932593
\begin{codeblock}
25942594
using PF1 = bool (&)();
25952595
using PF2 = short (*)(long);

0 commit comments

Comments
 (0)