tmp/tmpcy6revnp/{from.md → to.md}
RENAMED
|
@@ -1,21 +1,21 @@
|
|
| 1 |
#### Error reporting <a id="error.reporting">[[error.reporting]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
error_code make_error_code(io_errc e);
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* `error_code(static_cast<int>(e), iostream_category())`.
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
-
error_condition make_error_condition(io_errc e);
|
| 11 |
```
|
| 12 |
|
| 13 |
*Returns:* `error_condition(static_cast<int>(e), iostream_category())`.
|
| 14 |
|
| 15 |
``` cpp
|
| 16 |
-
const error_category& iostream_category();
|
| 17 |
```
|
| 18 |
|
| 19 |
*Returns:* A reference to an object of a type derived from class
|
| 20 |
`error_category`.
|
| 21 |
|
|
|
|
| 1 |
#### Error reporting <a id="error.reporting">[[error.reporting]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
error_code make_error_code(io_errc e) noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* `error_code(static_cast<int>(e), iostream_category())`.
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
+
error_condition make_error_condition(io_errc e) noexcept;
|
| 11 |
```
|
| 12 |
|
| 13 |
*Returns:* `error_condition(static_cast<int>(e), iostream_category())`.
|
| 14 |
|
| 15 |
``` cpp
|
| 16 |
+
const error_category& iostream_category() noexcept;
|
| 17 |
```
|
| 18 |
|
| 19 |
*Returns:* A reference to an object of a type derived from class
|
| 20 |
`error_category`.
|
| 21 |
|