| 12389 | |
| 12390 | namespace Catch { |
| 12391 | bool uncaught_exceptions() { |
| 12392 | #if defined(CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS) |
| 12393 | return std::uncaught_exceptions() > 0; |
| 12394 | #else |
| 12395 | return std::uncaught_exception(); |
| 12396 | #endif |
| 12397 | } |
| 12398 | } // end namespace Catch |
| 12399 | // end catch_uncaught_exceptions.cpp |
| 12400 | // start catch_version.cpp |
no outgoing calls
no test coverage detected