tmp/tmpyfwd_hs1/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Class template specialization `bad_expected_access<void>` <a id="expected.bad.void">[[expected.bad.void]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
namespace std {
|
| 5 |
+
template<>
|
| 6 |
+
class bad_expected_access<void> : public exception {
|
| 7 |
+
protected:
|
| 8 |
+
bad_expected_access() noexcept;
|
| 9 |
+
bad_expected_access(const bad_expected_access&);
|
| 10 |
+
bad_expected_access(bad_expected_access&&);
|
| 11 |
+
bad_expected_access& operator=(const bad_expected_access&);
|
| 12 |
+
bad_expected_access& operator=(bad_expected_access&&);
|
| 13 |
+
~bad_expected_access();
|
| 14 |
+
|
| 15 |
+
public:
|
| 16 |
+
const char* what() const noexcept override;
|
| 17 |
+
};
|
| 18 |
+
}
|
| 19 |
+
```
|
| 20 |
+
|
| 21 |
+
``` cpp
|
| 22 |
+
const char* what() const noexcept override;
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
*Returns:* An implementation-defined NTBS.
|
| 26 |
+
|