From Jason Turner

[syserr.errcondition.modifiers]

Diff to HTML by rtfpessoa

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:* This operator shall not participate in overload resolution
19
- unless `is_error_condition_enum<ErrorConditionEnum>::value` is `true`.
 
 
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