| 3776 | #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) |
| 3777 | template <typename Ex> |
| 3778 | [[noreturn]] |
| 3779 | void throw_exception(Ex const& e) { |
| 3780 | throw e; |
| 3781 | } |
| 3782 | #else // ^^ Exceptions are enabled // Exceptions are disabled vv |
| 3783 | [[noreturn]] |
| 3784 | void throw_exception(std::exception const& e); |
no test coverage detected