Skip to content

Commit 3e2b73d

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/text.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2583,7 +2583,7 @@
25832583

25842584
\begin{description}
25852585
\stage{1}
2586-
The function initializes local variables via
2586+
The function initializes variables with automatic storage duration via
25872587
\begin{codeblock}
25882588
fmtflags flags = str.flags();
25892589
fmtflags basefield = (flags & ios_base::basefield);
@@ -2632,7 +2632,7 @@
26322632
\stage{2}
26332633
If \tcode{in == end} then stage 2 terminates.
26342634
Otherwise a \tcode{charT} is taken from \tcode{in} and
2635-
local variables are initialized as if by
2635+
variables with automatic storage duration are initialized as if by
26362636
\begin{codeblock}
26372637
char_type ct = *in;
26382638
char c = src[find(atoms, atoms + sizeof(src) - 1, ct) - atoms];

0 commit comments

Comments
 (0)