tmp/tmp83ju1gie/{from.md → to.md}
RENAMED
|
@@ -191,14 +191,14 @@ ios_base& hexfloat(ios_base& str);
|
|
| 191 |
*Effects:* Calls
|
| 192 |
`str.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield)`.
|
| 193 |
|
| 194 |
*Returns:* `str`.
|
| 195 |
|
| 196 |
-
The more obvious use of `ios_base::hex` to specify
|
| 197 |
-
floating-point format would change the meaning of existing
|
| 198 |
-
programs. C++
|
| 199 |
-
`scientific`.
|
| 200 |
|
| 201 |
``` cpp
|
| 202 |
ios_base& defaultfloat(ios_base& str);
|
| 203 |
```
|
| 204 |
|
|
|
|
| 191 |
*Effects:* Calls
|
| 192 |
`str.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield)`.
|
| 193 |
|
| 194 |
*Returns:* `str`.
|
| 195 |
|
| 196 |
+
[*Note 1*: The more obvious use of `ios_base::hex` to specify
|
| 197 |
+
hexadecimal floating-point format would change the meaning of existing
|
| 198 |
+
well defined programs. C++03 gives no meaning to the combination of
|
| 199 |
+
`fixed` and `scientific`. — *end note*]
|
| 200 |
|
| 201 |
``` cpp
|
| 202 |
ios_base& defaultfloat(ios_base& str);
|
| 203 |
```
|
| 204 |
|