tmp/tmp3l0057ca/{from.md → to.md}
RENAMED
|
@@ -200,12 +200,12 @@ iter_type do_put(iter_type out, ios_base& str, char_type fill,
|
|
| 200 |
`do_put(out, str, fill,`
|
| 201 |
`(int)val)`, otherwise obtains a string `s` as if by
|
| 202 |
|
| 203 |
``` cpp
|
| 204 |
string_type s =
|
| 205 |
-
val ? use_facet<
|
| 206 |
-
: use_facet<
|
| 207 |
```
|
| 208 |
|
| 209 |
and then inserts each character `c` of `s` into `out` via `*out++ = c`
|
| 210 |
and returns `out`.
|
| 211 |
|
|
|
|
| 200 |
`do_put(out, str, fill,`
|
| 201 |
`(int)val)`, otherwise obtains a string `s` as if by
|
| 202 |
|
| 203 |
``` cpp
|
| 204 |
string_type s =
|
| 205 |
+
val ? use_facet<numpunct<charT>>(loc).truename()
|
| 206 |
+
: use_facet<numpunct<charT>>(loc).falsename();
|
| 207 |
```
|
| 208 |
|
| 209 |
and then inserts each character `c` of `s` into `out` via `*out++ = c`
|
| 210 |
and returns `out`.
|
| 211 |
|