| 13378 | namespace Catch { |
| 13379 | |
| 13380 | RegistrarForTagAliases::RegistrarForTagAliases(char const* alias, char const* tag, SourceLineInfo const& lineInfo) { |
| 13381 | CATCH_TRY { |
| 13382 | getMutableRegistryHub().registerTagAlias(alias, tag, lineInfo); |
| 13383 | } CATCH_CATCH_ALL { |
| 13384 | // Do not throw when constructing global objects, instead register the exception to be processed later |
| 13385 | getMutableRegistryHub().registerStartupException(); |
| 13386 | } |
nothing calls this directly
no test coverage detected