tmp/tmpmv952sqp/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Class `bad_any_cast` <a id="any.bad.any.cast">[[any.bad.any.cast]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
class bad_any_cast : public bad_cast {
|
| 5 |
+
public:
|
| 6 |
+
// see [exception] for the specification of the special member functions
|
| 7 |
+
const char* what() const noexcept override;
|
| 8 |
+
};
|
| 9 |
+
```
|
| 10 |
+
|
| 11 |
+
Objects of type `bad_any_cast` are thrown by a failed `any_cast`
|
| 12 |
+
[[any.nonmembers]].
|
| 13 |
+
|
| 14 |
+
``` cpp
|
| 15 |
+
const char* what() const noexcept override;
|
| 16 |
+
```
|
| 17 |
+
|
| 18 |
+
*Returns:* An *implementation-defined* NTBS.
|
| 19 |
+
|