| 12661 | |
| 12662 | namespace Catch { |
| 12663 | bool uncaught_exceptions() { |
| 12664 | #if defined(CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS) |
| 12665 | return std::uncaught_exceptions() > 0; |
| 12666 | #else |
| 12667 | return std::uncaught_exception(); |
| 12668 | #endif |
| 12669 | } |
| 12670 | } // end namespace Catch |
| 12671 | // end catch_uncaught_exceptions.cpp |
| 12672 | // start catch_version.cpp |
no outgoing calls
no test coverage detected