| 10298 | } |
| 10299 | |
| 10300 | void ExceptionTranslatorRegistry::registerTranslator( const IExceptionTranslator* translator ) { |
| 10301 | m_translators.push_back( std::unique_ptr<const IExceptionTranslator>( translator ) ); |
| 10302 | } |
| 10303 | |
| 10304 | #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) |
| 10305 | std::string ExceptionTranslatorRegistry::translateActiveException() const { |
no test coverage detected