mirror of
https://github.com/catchorg/Catch2.git
synced 2024-12-23 11:43:29 +01:00
Use make_unique when registering an exception translator
This commit is contained in:
parent
928ecbaccf
commit
0a8516aeea
@ -49,9 +49,7 @@ namespace Catch {
|
|||||||
template<typename T>
|
template<typename T>
|
||||||
ExceptionTranslatorRegistrar( std::string(*translateFunction)( T const& ) ) {
|
ExceptionTranslatorRegistrar( std::string(*translateFunction)( T const& ) ) {
|
||||||
getMutableRegistryHub().registerTranslator(
|
getMutableRegistryHub().registerTranslator(
|
||||||
Detail::unique_ptr<IExceptionTranslator>(
|
Detail::make_unique<ExceptionTranslator<T>>(translateFunction)
|
||||||
new ExceptionTranslator<T>( translateFunction )
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user