Skip to content

Commit 79c04f1

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 32d5b40 commit 79c04f1

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

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

@@ -2450,7 +2450,7 @@
24502450

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

24552455
\begin{itemize}
24562456
\item If \tcode{sizeof...(T)} is zero, there shall be no member \tcode{type}.
@@ -2523,7 +2523,7 @@
25232523

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

25942594
\pnum
25952595
\begin{example}
2596-
Given these definitions:
2596+
Given these declarations:
25972597
\begin{codeblock}
25982598
using PF1 = bool (&)();
25992599
using PF2 = short (*)(long);

0 commit comments

Comments
 (0)