| 3472 | #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) |
| 3473 | template <typename Ex> |
| 3474 | [[noreturn]] |
| 3475 | void throw_exception(Ex const& e) { |
| 3476 | throw e; |
| 3477 | } |
| 3478 | #else // ^^ Exceptions are enabled // Exceptions are disabled vv |
| 3479 | [[noreturn]] |
| 3480 | void throw_exception(std::exception const& e); |
no test coverage detected