| 14580 | |
| 14581 | namespace Catch { |
| 14582 | bool uncaught_exceptions() { |
| 14583 | #if defined(CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS) |
| 14584 | return std::uncaught_exceptions() > 0; |
| 14585 | #else |
| 14586 | return std::uncaught_exception(); |
| 14587 | #endif |
| 14588 | } |
| 14589 | } // end namespace Catch |
| 14590 | // end catch_uncaught_exceptions.cpp |
| 14591 | // start catch_version.cpp |
no outgoing calls
no test coverage detected