tmp/tmpjgyiecyf/{from.md → to.md}
RENAMED
|
@@ -2,16 +2,16 @@
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
const error_category& future_category() noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
-
*Returns:*
|
| 8 |
`error_category`.
|
| 9 |
|
| 10 |
The object’s `default_error_condition` and equivalent virtual functions
|
| 11 |
shall behave as specified for the class `error_category`. The object’s
|
| 12 |
-
`name` virtual function
|
| 13 |
|
| 14 |
``` cpp
|
| 15 |
error_code make_error_code(future_errc e) noexcept;
|
| 16 |
```
|
| 17 |
|
|
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
const error_category& future_category() noexcept;
|
| 5 |
```
|
| 6 |
|
| 7 |
+
*Returns:* A reference to an object of a type derived from class
|
| 8 |
`error_category`.
|
| 9 |
|
| 10 |
The object’s `default_error_condition` and equivalent virtual functions
|
| 11 |
shall behave as specified for the class `error_category`. The object’s
|
| 12 |
+
`name` virtual function returns a pointer to the string `"future"`.
|
| 13 |
|
| 14 |
``` cpp
|
| 15 |
error_code make_error_code(future_errc e) noexcept;
|
| 16 |
```
|
| 17 |
|