| 8596 | } |
| 8597 | |
| 8598 | void ExceptionTranslatorRegistry::registerTranslator( const IExceptionTranslator* translator ) { |
| 8599 | m_translators.push_back( std::unique_ptr<const IExceptionTranslator>( translator ) ); |
| 8600 | } |
| 8601 | |
| 8602 | #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) |
| 8603 | std::string ExceptionTranslatorRegistry::translateActiveException() const { |
no test coverage detected