| 10804 | |
| 10805 | namespace Catch { |
| 10806 | bool uncaught_exceptions() { |
| 10807 | #if defined(CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS) |
| 10808 | return std::uncaught_exceptions() > 0; |
| 10809 | #else |
| 10810 | return std::uncaught_exception(); |
| 10811 | #endif |
| 10812 | } |
| 10813 | } // end namespace Catch |
| 10814 | // end catch_uncaught_exceptions.cpp |
| 10815 | // start catch_version.cpp |
no outgoing calls
no test coverage detected