mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 09:31:45 +00:00
Replace tools::make_unique with std::make_unique
This commit is contained in:
@@ -10,7 +10,6 @@
|
||||
#define FAIR_MQ_SDK_COMMANDFACTORY
|
||||
|
||||
#include <fairmq/States.h>
|
||||
#include <fairmq/tools/CppSTL.h>
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
@@ -354,7 +353,7 @@ struct PropertiesSet : Cmd {
|
||||
template<typename C, typename... Args>
|
||||
std::unique_ptr<Cmd> make(Args&&... args)
|
||||
{
|
||||
return fair::mq::tools::make_unique<C>(std::forward<Args>(args)...);
|
||||
return std::make_unique<C>(std::forward<Args>(args)...);
|
||||
}
|
||||
|
||||
struct Cmds
|
||||
|
Reference in New Issue
Block a user