| 7242 | namespace Catch { |
| 7243 | |
| 7244 | ExceptionTranslatorRegistry::~ExceptionTranslatorRegistry() { |
| 7245 | } |
| 7246 | |
| 7247 | void ExceptionTranslatorRegistry::registerTranslator( const IExceptionTranslator* translator ) { |
| 7248 | m_translators.push_back( std::unique_ptr<const IExceptionTranslator>( translator ) ); |
nothing calls this directly
no outgoing calls
no test coverage detected