Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/coding
diff options
context:
space:
mode:
authorMikhail Gorbushin <m.gorbushin@corp.mail.ru>2018-08-31 11:35:44 +0300
committerVlad Mihaylenko <vxmihaylenko@gmail.com>2018-08-31 15:34:54 +0300
commit7b1b6d68940678abe4b182e7eaab425f8e8f5bfa (patch)
tree1a60cef3101193a11f346727ead8f8dd1a58199d /coding
parente73f3c434b1040685c365383baebab93411205bb (diff)
remove my::make_unique
Diffstat (limited to 'coding')
-rw-r--r--coding/serdes_json.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/coding/serdes_json.hpp b/coding/serdes_json.hpp
index 088c9910b6..bffb58d69c 100644
--- a/coding/serdes_json.hpp
+++ b/coding/serdes_json.hpp
@@ -2,7 +2,6 @@
#include "base/exception.hpp"
#include "base/scope_guard.hpp"
-#include "base/stl_add.hpp"
#include "3party/jansson/myjansson.hpp"
@@ -280,7 +279,7 @@ public:
{
json_t * context = SaveContext(name);
if (!r)
- r = my::make_unique<R>();
+ r = std::make_unique<R>();
r->Visit(*this);
RestoreContext(context);
}