| 3874 | #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) |
| 3875 | template <typename Ex> |
| 3876 | [[noreturn]] |
| 3877 | void throw_exception(Ex const& e) { |
| 3878 | throw e; |
| 3879 | } |
| 3880 | #else // ^^ Exceptions are enabled // Exceptions are disabled vv |
| 3881 | [[noreturn]] |
| 3882 | void throw_exception(std::exception const& e); |
no test coverage detected