From Jason Turner

[syserr.errcondition.constructors]

Diff to HTML by rtfpessoa

tmp/tmp_l_cgj2a/{from.md → to.md} RENAMED
@@ -2,18 +2,18 @@
2
 
3
  ``` cpp
4
  error_condition() noexcept;
5
  ```
6
 
7
- *Effects:* Initializes `val_` with `0` and `cat_` with
8
  `&generic_category()`.
9
 
10
  ``` cpp
11
  error_condition(int val, const error_category& cat) noexcept;
12
  ```
13
 
14
- *Effects:* Initializes `val_` with `val` and `cat_` with `&cat`.
15
 
16
  ``` cpp
17
  template<class ErrorConditionEnum>
18
  error_condition(ErrorConditionEnum e) noexcept;
19
  ```
 
2
 
3
  ``` cpp
4
  error_condition() noexcept;
5
  ```
6
 
7
+ *Effects:* Initializes *val\_* with `0` and *cat\_* with
8
  `&generic_category()`.
9
 
10
  ``` cpp
11
  error_condition(int val, const error_category& cat) noexcept;
12
  ```
13
 
14
+ *Effects:* Initializes *val\_* with `val` and *cat\_* with `&cat`.
15
 
16
  ``` cpp
17
  template<class ErrorConditionEnum>
18
  error_condition(ErrorConditionEnum e) noexcept;
19
  ```