tmp/tmp5k93yx7g/{from.md → to.md}
RENAMED
|
@@ -16,17 +16,13 @@ executes.
|
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
runtime_error(const string& what_arg);
|
| 19 |
```
|
| 20 |
|
| 21 |
-
*
|
| 22 |
-
|
| 23 |
-
*Postconditions:* `strcmp(what(), what_arg.c_str()) == 0`.
|
| 24 |
|
| 25 |
``` cpp
|
| 26 |
runtime_error(const char* what_arg);
|
| 27 |
```
|
| 28 |
|
| 29 |
-
*
|
| 30 |
-
|
| 31 |
-
*Postconditions:* `strcmp(what(), what_arg) == 0`.
|
| 32 |
|
|
|
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
runtime_error(const string& what_arg);
|
| 19 |
```
|
| 20 |
|
| 21 |
+
*Ensures:* `strcmp(what(), what_arg.c_str()) == 0`.
|
|
|
|
|
|
|
| 22 |
|
| 23 |
``` cpp
|
| 24 |
runtime_error(const char* what_arg);
|
| 25 |
```
|
| 26 |
|
| 27 |
+
*Ensures:* `strcmp(what(), what_arg) == 0`.
|
|
|
|
|
|
|
| 28 |
|