tmp/tmp8qacvb5m/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## `uncaught_exception` <a id="depr.uncaught">[[depr.uncaught]]</a>
|
| 2 |
+
|
| 3 |
+
The header `<exception>` has the following addition:
|
| 4 |
+
|
| 5 |
+
``` cpp
|
| 6 |
+
namespace std {
|
| 7 |
+
bool uncaught_exception() noexcept;
|
| 8 |
+
}
|
| 9 |
+
```
|
| 10 |
+
|
| 11 |
+
``` cpp
|
| 12 |
+
bool uncaught_exception() noexcept;
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
*Returns:* `uncaught_exceptions() > 0`.
|
| 16 |
+
|