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:
authorSergey Magidovich <mgsergio@mapswithme.com>2016-02-13 19:04:32 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:20:48 +0300
commitfdaa9d6cf6496e0cf6b42ee864b90e7df778ce9c (patch)
treeb1ba1e94089da588a6eaa13d6a123484ae5c430b /std/type_traits.hpp
parent138798419bd017ea5236b5e24f43149b1881a35c (diff)
Code review and refactoring of geometry/algorithm.
Diffstat (limited to 'std/type_traits.hpp')
-rw-r--r--std/type_traits.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/std/type_traits.hpp b/std/type_traits.hpp
index 00baf5531f..fcbe0f428c 100644
--- a/std/type_traits.hpp
+++ b/std/type_traits.hpp
@@ -18,10 +18,14 @@ using std::is_same;
using std::is_signed;
using std::is_standard_layout;
using std::is_unsigned;
+using std::is_void;
using std::make_signed;
using std::make_unsigned;
+using std::remove_reference;
using std::underlying_type;
-using std::is_void;
+
+using std::false_type;
+using std::true_type;
/// @todo clang on linux doesn't have is_trivially_copyable.
#ifndef OMIM_OS_LINUX