|
2583 | 2583 |
|
2584 | 2584 | \begin{description}
|
2585 | 2585 | \stage{1}
|
2586 |
| -The function initializes block variables via |
| 2586 | +The function initializes variables with automatic storage duration via |
2587 | 2587 | \begin{codeblock}
|
2588 | 2588 | fmtflags flags = str.flags();
|
2589 | 2589 | fmtflags basefield = (flags & ios_base::basefield);
|
|
2632 | 2632 | \stage{2}
|
2633 | 2633 | If \tcode{in == end} then stage 2 terminates.
|
2634 | 2634 | Otherwise a \tcode{charT} is taken from \tcode{in} and
|
2635 |
| -block variables are initialized as if by |
| 2635 | +variables with automatic storage duration are initialized as if by |
2636 | 2636 | \begin{codeblock}
|
2637 | 2637 | char_type ct = *in;
|
2638 | 2638 | char c = src[find(atoms, atoms + sizeof(src) - 1, ct) - atoms];
|
|
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 block 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 block 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();
|
|
3022 | 3024 | use_facet<ctype<charT>>(loc).widen(c)
|
3023 | 3025 | \end{codeblock}
|
3024 | 3026 |
|
3025 |
| -A block variable \tcode{punct} is initialized via |
| 3027 | +A variable \tcode{punct} with automatic storage duration is initialized via |
3026 | 3028 | \begin{codeblock}
|
3027 | 3029 | const numpunct<charT>& punct = use_facet<numpunct<charT>>(loc);
|
3028 | 3030 | \end{codeblock}
|
|
3035 | 3037 | Decimal point characters(.) are replaced by \tcode{punct.decimal_point()}.
|
3036 | 3038 |
|
3037 | 3039 | \stage{3}
|
3038 |
| -A block variable is initialized as |
| 3040 | +A variable with automatic storage is initialized as |
3039 | 3041 | \begin{codeblock}
|
3040 | 3042 | fmtflags adjustfield = (flags & (ios_base::adjustfield));
|
3041 | 3043 | \end{codeblock}
|
|
12398 | 12400 | \begin{itemdescr}
|
12399 | 12401 | \pnum
|
12400 | 12402 | \effects
|
12401 |
| -Constructs a block variable \tcode{start} of type \tcode{BidirectionalIterator} and |
| 12403 | +Constructs a variable \tcode{start} of type \tcode{BidirectionalIterator} |
| 12404 | +with automatic storage duration and |
12402 | 12405 | initializes it with the value of \tcode{match[0].second}.
|
12403 | 12406 |
|
12404 | 12407 | \pnum
|
|
12743 | 12746 | \begin{itemdescr}
|
12744 | 12747 | \pnum
|
12745 | 12748 | \effects
|
12746 |
| -Constructs a block variable \tcode{prev} of |
12747 |
| -type \tcode{position_iterator}, initialized with the value |
12748 |
| -of \tcode{position}. |
| 12749 | +Constructs a variable \tcode{prev} of type \tcode{position_iterator} |
| 12750 | +with automatic storage duration, initialized with the value of \tcode{position}. |
12749 | 12751 |
|
12750 | 12752 | \pnum
|
12751 | 12753 | If \tcode{*this} is a suffix iterator, sets \tcode{*this} to an
|
|
0 commit comments