mirror of
https://github.com/catchorg/Catch2.git
synced 2024-12-23 03:43:28 +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>
|
||||
ExceptionTranslatorRegistrar( std::string(*translateFunction)( T const& ) ) {
|
||||
getMutableRegistryHub().registerTranslator(
|
||||
Detail::unique_ptr<IExceptionTranslator>(
|
||||
new ExceptionTranslator<T>( translateFunction )
|
||||
)
|
||||
Detail::make_unique<ExceptionTranslator<T>>(translateFunction)
|
||||
);
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user