| 3828 | #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) |
| 3829 | template <typename Ex> |
| 3830 | [[noreturn]] |
| 3831 | void throw_exception(Ex const& e) { |
| 3832 | throw e; |
| 3833 | } |
| 3834 | #else // ^^ Exceptions are enabled // Exceptions are disabled vv |
| 3835 | [[noreturn]] |
| 3836 | void throw_exception(std::exception const& e); |
no test coverage detected