tmp/tmpctuolnyn/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### `uncaught_exceptions` <a id="uncaught.exceptions">[[uncaught.exceptions]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
int uncaught_exceptions() noexcept;
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
*Returns:* The number of uncaught exceptions ([[except.uncaught]]).
|
| 8 |
+
|
| 9 |
+
*Remarks:* When `uncaught_exceptions() > 0`, throwing an exception can
|
| 10 |
+
result in a call of
|
| 11 |
+
`std::terminate()` ([[except.terminate]]).
|
| 12 |
+
|