| 11488 | namespace Detail { |
| 11489 | |
| 11490 | void registerReporterImpl( std::string const& name, |
| 11491 | IReporterFactoryPtr reporterPtr ) { |
| 11492 | CATCH_TRY { |
| 11493 | getMutableRegistryHub().registerReporter( |
| 11494 | name, CATCH_MOVE( reporterPtr ) ); |
| 11495 | } |
| 11496 | CATCH_CATCH_ALL { |
| 11497 | // Do not throw when constructing global objects, instead |
| 11498 | // register the exception to be processed later |
no test coverage detected