| 10873 | |
| 10874 | namespace Catch { |
| 10875 | bool uncaught_exceptions() { |
| 10876 | #if defined(CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS) |
| 10877 | return std::uncaught_exceptions() > 0; |
| 10878 | #else |
| 10879 | return std::uncaught_exception(); |
| 10880 | #endif |
| 10881 | } |
| 10882 | } // end namespace Catch |
| 10883 | // end catch_uncaught_exceptions.cpp |
| 10884 | // start catch_version.cpp |
no outgoing calls
no test coverage detected