Skip to content

Commit 8ffcd99

Browse files
[facet.num.put.virtuals] Replace the uses of "local variable"
... with "variable with automatic storage duration"
1 parent 3e2b73d commit 8ffcd99

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

source/text.tex

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2881,7 +2881,8 @@
28812881
\effects
28822882
Writes characters to the sequence \tcode{out},
28832883
formatting \tcode{val} as desired.
2884-
In the following description, \tcode{loc} names a local variable initialized as
2884+
In the following description, \tcode{loc} names a variable with
2885+
automatic storage duration initialized as
28852886
\begin{codeblock}
28862887
locale loc = str.getloc();
28872888
\end{codeblock}
@@ -2925,7 +2926,8 @@
29252926
\begin{description}
29262927
\stage{1}
29272928
The first action of stage 1 is to determine a conversion specifier.
2928-
The tables that describe this determination use the following local variables
2929+
The tables that describe this determination use the following variables with
2930+
automatic storage duration.
29292931

29302932
\begin{codeblock}
29312933
fmtflags flags = str.flags();
@@ -3023,7 +3025,7 @@
30233025
use_facet<ctype<charT>>(loc).widen(c)
30243026
\end{codeblock}
30253027

3026-
A local variable \tcode{punct} is initialized via
3028+
A variable \tcode{punct} with automatic storage duration is initialized via
30273029
\begin{codeblock}
30283030
const numpunct<charT>& punct = use_facet<numpunct<charT>>(loc);
30293031
\end{codeblock}
@@ -3036,7 +3038,7 @@
30363038
Decimal point characters(.) are replaced by \tcode{punct.decimal_point()}.
30373039

30383040
\stage{3}
3039-
A local variable is initialized as
3041+
A variable with automatic storage is initialized as
30403042
\begin{codeblock}
30413043
fmtflags adjustfield = (flags & (ios_base::adjustfield));
30423044
\end{codeblock}

0 commit comments

Comments
 (0)