tmp/tmp2nybkvw4/{from.md → to.md}
RENAMED
|
@@ -6,11 +6,11 @@ system_error(error_code ec, const string& what_arg);
|
|
| 6 |
|
| 7 |
*Effects:* Constructs an object of class `system_error`.
|
| 8 |
|
| 9 |
*Postconditions:* `code() == ec`.
|
| 10 |
|
| 11 |
-
string(what()).find(what_arg) != string::npos.
|
| 12 |
|
| 13 |
``` cpp
|
| 14 |
system_error(error_code ec, const char* what_arg);
|
| 15 |
```
|
| 16 |
|
|
@@ -46,11 +46,11 @@ system_error(int ev, const error_category& ecat,
|
|
| 46 |
|
| 47 |
*Effects:* Constructs an object of class `system_error`.
|
| 48 |
|
| 49 |
*Postconditions:* `code() == error_code(ev, ecat)`.
|
| 50 |
|
| 51 |
-
string(what()).find(what_arg) != string::npos.
|
| 52 |
|
| 53 |
``` cpp
|
| 54 |
system_error(int ev, const error_category& ecat);
|
| 55 |
```
|
| 56 |
|
|
|
|
| 6 |
|
| 7 |
*Effects:* Constructs an object of class `system_error`.
|
| 8 |
|
| 9 |
*Postconditions:* `code() == ec`.
|
| 10 |
|
| 11 |
+
`string(what()).find(what_arg) != string::npos`.
|
| 12 |
|
| 13 |
``` cpp
|
| 14 |
system_error(error_code ec, const char* what_arg);
|
| 15 |
```
|
| 16 |
|
|
|
|
| 46 |
|
| 47 |
*Effects:* Constructs an object of class `system_error`.
|
| 48 |
|
| 49 |
*Postconditions:* `code() == error_code(ev, ecat)`.
|
| 50 |
|
| 51 |
+
`string(what()).find(what_arg) != string::npos`.
|
| 52 |
|
| 53 |
``` cpp
|
| 54 |
system_error(int ev, const error_category& ecat);
|
| 55 |
```
|
| 56 |
|