tmp/tmp29ntsi5p/{from.md → to.md}
RENAMED
|
@@ -54,11 +54,11 @@ namespace std {
|
|
| 54 |
enum class io_errc {
|
| 55 |
stream = 1
|
| 56 |
};
|
| 57 |
|
| 58 |
template <> struct is_error_code_enum<io_errc> : public true_type { };
|
| 59 |
-
error_code make_error_code(io_errc e);
|
| 60 |
-
error_condition make_error_condition(io_errc e);
|
| 61 |
-
const error_category& iostream_category();
|
| 62 |
}
|
| 63 |
```
|
| 64 |
|
|
|
|
| 54 |
enum class io_errc {
|
| 55 |
stream = 1
|
| 56 |
};
|
| 57 |
|
| 58 |
template <> struct is_error_code_enum<io_errc> : public true_type { };
|
| 59 |
+
error_code make_error_code(io_errc e) noexcept;
|
| 60 |
+
error_condition make_error_condition(io_errc e) noexcept;
|
| 61 |
+
const error_category& iostream_category() noexcept;
|
| 62 |
}
|
| 63 |
```
|
| 64 |
|