tmp/tmp_3k82d8q/{from.md → to.md}
RENAMED
|
@@ -23,14 +23,14 @@ ios_base& hexfloat(ios_base& str);
|
|
| 23 |
*Effects:* Calls
|
| 24 |
`str.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield)`.
|
| 25 |
|
| 26 |
*Returns:* `str`.
|
| 27 |
|
| 28 |
-
The more obvious use of `ios_base::hex` to specify
|
| 29 |
-
floating-point format would change the meaning of existing
|
| 30 |
-
programs. C++
|
| 31 |
-
`scientific`.
|
| 32 |
|
| 33 |
``` cpp
|
| 34 |
ios_base& defaultfloat(ios_base& str);
|
| 35 |
```
|
| 36 |
|
|
|
|
| 23 |
*Effects:* Calls
|
| 24 |
`str.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield)`.
|
| 25 |
|
| 26 |
*Returns:* `str`.
|
| 27 |
|
| 28 |
+
[*Note 1*: The more obvious use of `ios_base::hex` to specify
|
| 29 |
+
hexadecimal floating-point format would change the meaning of existing
|
| 30 |
+
well defined programs. C++03 gives no meaning to the combination of
|
| 31 |
+
`fixed` and `scientific`. — *end note*]
|
| 32 |
|
| 33 |
``` cpp
|
| 34 |
ios_base& defaultfloat(ios_base& str);
|
| 35 |
```
|
| 36 |
|