File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 28812881\effects
28822882Writes characters to the sequence \tcode {out},
28832883formatting \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 }
28862887locale loc = str.getloc();
28872888\end {codeblock }
29252926\begin {description }
29262927\stage {1}
29272928The 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 }
29312933fmtflags flags = str.flags();
30233025use_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 }
30283030const numpunct<charT>& punct = use_facet<numpunct<charT>>(loc);
30293031\end {codeblock }
30363038Decimal 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 }
30413043fmtflags adjustfield = (flags & (ios_base::adjustfield));
30423044\end {codeblock }
You can’t perform that action at this time.
0 commit comments