Skip to content

Commit 761a7d5

Browse files
authored
[all] Fix typeface of "volatile-qualified".
This is a defined term with non-teletype "volatile".
1 parent f30ae8f commit 761a7d5

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

source/declarations.tex

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3337,9 +3337,8 @@
33373337
non-dependent type \tcode{void} is equivalent to an empty parameter
33383338
list.
33393339
\indextext{parameter!\idxcode{void}}%
3340-
Except for this special case, a parameter shall not have type \term{cv}
3341-
\tcode{void}.
3342-
A parameter with \tcode{volatile}-qualified type is deprecated;
3340+
Except for this special case, a parameter shall not have type \cv{}~\tcode{void}.
3341+
A parameter with volatile-qualified type is deprecated;
33433342
see~\ref{depr.volatile.type}.
33443343
If the
33453344
\grammarterm{parameter-declaration-clause}
@@ -3497,7 +3496,7 @@
34973496
to functions.
34983497

34993498
\pnum
3500-
A \tcode{volatile}-qualified return type is deprecated;
3499+
A volatile-qualified return type is deprecated;
35013500
see~\ref{depr.volatile.type}.
35023501

35033502
\pnum

source/expressions.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3343,7 +3343,7 @@
33433343
The operand shall be a modifiable lvalue. The type of the operand shall
33443344
be an arithmetic type other than \cv{}~\tcode{bool},
33453345
or a pointer to a complete object type.
3346-
An operand with \tcode{volatile}-qualified type is deprecated;
3346+
An operand with volatile-qualified type is deprecated;
33473347
see~\ref{depr.volatile.type}.
33483348
The value of the operand object is modified\iref{defns.access}
33493349
by adding \tcode{1} to it.
@@ -4308,7 +4308,7 @@
43084308
The operand shall be a modifiable lvalue. The type of the operand shall
43094309
be an arithmetic type other than \cv{}~\tcode{bool},
43104310
or a pointer to a completely-defined object type.
4311-
An operand with \tcode{volatile}-qualified type is deprecated;
4311+
An operand with volatile-qualified type is deprecated;
43124312
see~\ref{depr.volatile.type}.
43134313
The result is the updated operand; it is an lvalue, and it is a
43144314
bit-field if the operand is a bit-field.
@@ -6692,7 +6692,7 @@
66926692

66936693
\pnum
66946694
A simple assignment whose left operand is of
6695-
a \tcode{volatile}-qualified type is deprecated\iref{depr.volatile.type}
6695+
a volatile-qualified type is deprecated\iref{depr.volatile.type}
66966696
unless the (possibly parenthesized) assignment is a discarded-value expression or
66976697
an unevaluated operand.
66986698

@@ -6701,7 +6701,7 @@
67016701
is equivalent to \tcode{E1 = E1 \placeholder{op} E2} except
67026702
that \tcode{E1} is evaluated only once.
67036703
Such expressions are deprecated
6704-
if \tcode{E1} has \tcode{volatile}-qualified type; see~\ref{depr.volatile.type}.
6704+
if \tcode{E1} has volatile-qualified type; see~\ref{depr.volatile.type}.
67056705
For \tcode{+=} and \tcode{-=},
67066706
\tcode{E1} shall either have arithmetic type or be a pointer to a
67076707
possibly cv-qualified completely-defined object type. In all other

source/future.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
\pnum
9999
Postfix \tcode{++} and \tcode{\dcr} expressions\iref{expr.post.incr} and
100100
prefix \tcode{++} and \tcode{\dcr} expressions\iref{expr.pre.incr}
101-
of \tcode{volatile}-qualified arithmetic and pointer types are deprecated.
101+
of volatile-qualified arithmetic and pointer types are deprecated.
102102

103103
\begin{example}
104104
\begin{codeblock}
@@ -110,7 +110,7 @@
110110

111111
\pnum
112112
Certain assignments
113-
where the left operand is a \tcode{volatile}-qualified non-class type
113+
where the left operand is a volatile-qualified non-class type
114114
are deprecated; see~\ref{expr.ass}.
115115

116116
\begin{example}
@@ -128,8 +128,8 @@
128128

129129
\pnum
130130
A function type\iref{dcl.fct}
131-
with a parameter with \tcode{volatile}-qualified type or
132-
with a \tcode{volatile}-qualified return type is deprecated.
131+
with a parameter with volatile-qualified type or
132+
with a volatile-qualified return type is deprecated.
133133

134134
\begin{example}
135135
\begin{codeblock}
@@ -141,7 +141,7 @@
141141

142142

143143
\pnum
144-
A structured binding\iref{dcl.struct.bind} of a \tcode{volatile}-qualified type
144+
A structured binding\iref{dcl.struct.bind} of a volatile-qualified type
145145
is deprecated.
146146

147147
\begin{example}

0 commit comments

Comments
 (0)