| 9763 | namespace Catch { |
| 9764 | |
| 9765 | RegistrarForTagAliases::RegistrarForTagAliases(char const* alias, char const* tag, SourceLineInfo const& lineInfo) { |
| 9766 | try { |
| 9767 | getMutableRegistryHub().registerTagAlias(alias, tag, lineInfo); |
| 9768 | } catch (...) { |
| 9769 | // Do not throw when constructing global objects, instead register the exception to be processed later |
| 9770 | getMutableRegistryHub().registerStartupException(); |
| 9771 | } |
| 9772 | } |
| 9773 | |
| 9774 | } |
| 9775 | // end catch_tag_alias_autoregistrar.cpp |
nothing calls this directly
no test coverage detected