tmp/tmpacod2ivt/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
const char* what() const noexcept override;
|
| 7 |
+
};
|
| 8 |
+
```
|
| 9 |
+
|
| 10 |
+
Objects of type `bad_any_cast` are thrown by a failed `any_cast` (
|
| 11 |
+
[[any.nonmembers]]).
|
| 12 |
+
|
| 13 |
+
``` cpp
|
| 14 |
+
const char* what() const noexcept override;
|
| 15 |
+
```
|
| 16 |
+
|
| 17 |
+
*Returns:* An *implementation-defined* NTBS.
|
| 18 |
+
|
| 19 |
+
*Remarks:* The message may be a null-terminated multibyte
|
| 20 |
+
string ([[multibyte.strings]]), suitable for conversion and display as
|
| 21 |
+
a wstring ([[string.classes]], [[locale.codecvt]]).
|
| 22 |
+
|