From Jason Turner

[syserr.errcode.constructors]

Diff to HTML by rtfpessoa

tmp/tmp3zfgawul/{from.md → to.md} RENAMED
@@ -2,18 +2,18 @@
2
 
3
  ``` cpp
4
  error_code() noexcept;
5
  ```
6
 
7
- *Effects:* Initializes `val_` with `0` and `cat_` with
8
  `&system_category()`.
9
 
10
  ``` cpp
11
  error_code(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 ErrorCodeEnum>
18
  error_code(ErrorCodeEnum e) noexcept;
19
  ```
 
2
 
3
  ``` cpp
4
  error_code() noexcept;
5
  ```
6
 
7
+ *Effects:* Initializes *val\_* with `0` and *cat\_* with
8
  `&system_category()`.
9
 
10
  ``` cpp
11
  error_code(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 ErrorCodeEnum>
18
  error_code(ErrorCodeEnum e) noexcept;
19
  ```