tmp/tmpp16nf894/{from.md → to.md}
RENAMED
|
@@ -28,12 +28,10 @@ of `rhs`, then `strcmp(lhs.what(), rhs.what())` shall equal 0.
|
|
| 28 |
exception() noexcept;
|
| 29 |
```
|
| 30 |
|
| 31 |
*Effects:* Constructs an object of class `exception`.
|
| 32 |
|
| 33 |
-
*Remarks:* Does not throw any exceptions.
|
| 34 |
-
|
| 35 |
``` cpp
|
| 36 |
exception(const exception& rhs) noexcept;
|
| 37 |
exception& operator=(const exception& rhs) noexcept;
|
| 38 |
```
|
| 39 |
|
|
@@ -46,12 +44,10 @@ If `*this` and `rhs` both have dynamic type `exception` then
|
|
| 46 |
virtual ~exception();
|
| 47 |
```
|
| 48 |
|
| 49 |
*Effects:* Destroys an object of class `exception`.
|
| 50 |
|
| 51 |
-
*Remarks:* Does not throw any exceptions.
|
| 52 |
-
|
| 53 |
``` cpp
|
| 54 |
virtual const char* what() const noexcept;
|
| 55 |
```
|
| 56 |
|
| 57 |
*Returns:* An *implementation-defined* NTBS.
|
|
|
|
| 28 |
exception() noexcept;
|
| 29 |
```
|
| 30 |
|
| 31 |
*Effects:* Constructs an object of class `exception`.
|
| 32 |
|
|
|
|
|
|
|
| 33 |
``` cpp
|
| 34 |
exception(const exception& rhs) noexcept;
|
| 35 |
exception& operator=(const exception& rhs) noexcept;
|
| 36 |
```
|
| 37 |
|
|
|
|
| 44 |
virtual ~exception();
|
| 45 |
```
|
| 46 |
|
| 47 |
*Effects:* Destroys an object of class `exception`.
|
| 48 |
|
|
|
|
|
|
|
| 49 |
``` cpp
|
| 50 |
virtual const char* what() const noexcept;
|
| 51 |
```
|
| 52 |
|
| 53 |
*Returns:* An *implementation-defined* NTBS.
|