| 18 | #endif |
| 19 | |
| 20 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 21 | |
| 22 | void __throw_runtime_error(const char* msg) { |
| 23 | #if _LIBCPP_HAS_EXCEPTIONS |
| 24 | throw runtime_error(msg); |
| 25 | #else |
| 26 | _LIBCPP_VERBOSE_ABORT("runtime_error was thrown in -fno-exceptions mode with message \"%s\"", msg); |
| 27 | #endif |
| 28 | } |
| 29 | |
| 30 | _LIBCPP_END_NAMESPACE_STD |
no test coverage detected