| 11299 | namespace Catch { |
| 11300 | |
| 11301 | RegistrarForTagAliases::RegistrarForTagAliases(char const* alias, char const* tag, SourceLineInfo const& lineInfo) { |
| 11302 | CATCH_TRY { |
| 11303 | getMutableRegistryHub().registerTagAlias(alias, tag, lineInfo); |
| 11304 | } CATCH_CATCH_ALL { |
| 11305 | // Do not throw when constructing global objects, instead register the exception to be processed later |
| 11306 | getMutableRegistryHub().registerStartupException(); |
| 11307 | } |
nothing calls this directly
no test coverage detected