Commit a9c01aba authored by Bartlomiej Janowski's avatar Bartlomiej Janowski

Changed mongo_sink.h so that it does not use C++14-specific std::make_unique

parent f237947b
......@@ -33,7 +33,7 @@ public:
{
try
{
client_ = std::make_unique<mongocxx::client>(mongocxx::uri{uri});
client_ = spdlog::details::make_unique<mongocxx::client>(mongocxx::uri{uri});
db_name_ = db_name;
coll_name_ = collection_name;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment