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
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2015-06-24 15:49:13 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:34 +0300
commitd7dfd870746a3e89ade642fd7d2605e753bbdafd (patch)
treee7430de05332b7d0834f9c6670cb8616604ed315 /std/unique_ptr.hpp
parent7afc128a29c5a290f34e4f7aafcbe0e80bb09f50 (diff)
std folder cleanup & removing not needed boost references.
Diffstat (limited to 'std/unique_ptr.hpp')
-rw-r--r--std/unique_ptr.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/std/unique_ptr.hpp b/std/unique_ptr.hpp
index 0d647a4df5..536fa25230 100644
--- a/std/unique_ptr.hpp
+++ b/std/unique_ptr.hpp
@@ -1,5 +1,4 @@
#pragma once
-#include "common_defines.hpp"
#ifdef new
#undef new
@@ -9,7 +8,7 @@
using std::unique_ptr;
/// @todo(y): replace this hand-written helper function by
-/// std::make_unique when it will be available.
+/// std::make_unique when it will be available in C++14
template <typename T, typename... Args>
unique_ptr<T> make_unique(Args &&... args)
{