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 2881
2881
\effects
2882
2882
Writes characters to the sequence \tcode {out},
2883
2883
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
2885
2886
\begin {codeblock }
2886
2887
locale loc = str.getloc();
2887
2888
\end {codeblock }
2925
2926
\begin {description }
2926
2927
\stage {1}
2927
2928
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.
2929
2931
2930
2932
\begin {codeblock }
2931
2933
fmtflags flags = str.flags();
3023
3025
use_facet<ctype<charT>>(loc).widen(c)
3024
3026
\end {codeblock }
3025
3027
3026
- A local variable \tcode {punct} is initialized via
3028
+ A variable \tcode {punct} with automatic storage duration is initialized via
3027
3029
\begin {codeblock }
3028
3030
const numpunct<charT>& punct = use_facet<numpunct<charT>>(loc);
3029
3031
\end {codeblock }
3036
3038
Decimal point characters(.) are replaced by \tcode {punct.decimal_point()}.
3037
3039
3038
3040
\stage {3}
3039
- A local variable is initialized as
3041
+ A variable with automatic storage is initialized as
3040
3042
\begin {codeblock }
3041
3043
fmtflags adjustfield = (flags & (ios_base::adjustfield));
3042
3044
\end {codeblock }
You can’t perform that action at this time.
0 commit comments