| 15010 | |
| 15011 | namespace Catch { |
| 15012 | bool uncaught_exceptions() { |
| 15013 | #if defined(CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS) |
| 15014 | return std::uncaught_exceptions() > 0; |
| 15015 | #else |
| 15016 | return std::uncaught_exception(); |
| 15017 | #endif |
| 15018 | } |
| 15019 | } // end namespace Catch |
| 15020 | // end catch_uncaught_exceptions.cpp |
| 15021 | // start catch_version.cpp |
no outgoing calls
no test coverage detected