tmp/tmpz6vw425_/{from.md → to.md}
RENAMED
|
@@ -9,16 +9,18 @@ void assign(int val, const error_category& cat) noexcept;
|
|
| 9 |
``` cpp
|
| 10 |
template <class ErrorConditionEnum>
|
| 11 |
error_condition& operator=(ErrorConditionEnum e) noexcept;
|
| 12 |
```
|
| 13 |
|
| 14 |
-
`*this == make_error_condition(e)`.
|
| 15 |
|
| 16 |
*Returns:* `*this`.
|
| 17 |
|
| 18 |
-
*Remarks:*
|
| 19 |
-
|
|
|
|
|
|
|
| 20 |
|
| 21 |
``` cpp
|
| 22 |
void clear() noexcept;
|
| 23 |
```
|
| 24 |
|
|
|
|
| 9 |
``` cpp
|
| 10 |
template <class ErrorConditionEnum>
|
| 11 |
error_condition& operator=(ErrorConditionEnum e) noexcept;
|
| 12 |
```
|
| 13 |
|
| 14 |
+
*Postconditions:* `*this == make_error_condition(e)`.
|
| 15 |
|
| 16 |
*Returns:* `*this`.
|
| 17 |
|
| 18 |
+
*Remarks:*
|
| 19 |
+
|
| 20 |
+
This operator shall not participate in overload resolution unless
|
| 21 |
+
`is_error_condition_enum_v<ErrorConditionEnum>` is `true`.
|
| 22 |
|
| 23 |
``` cpp
|
| 24 |
void clear() noexcept;
|
| 25 |
```
|
| 26 |
|