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:
authorvng <viktor.govako@gmail.com>2015-03-26 21:10:54 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:41:11 +0300
commite82d3af67e8b8aab2e1fbb4bbb557c8e17677aa8 (patch)
tree5137db478003bd4577cd352fc96085cfaebba815 /std/type_traits.hpp
parent93f248fec5b0dc1576d469e29825eaba2450880c (diff)
Added move actor and move push_back to the buffer_vector.
Diffstat (limited to 'std/type_traits.hpp')
-rw-r--r--std/type_traits.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/std/type_traits.hpp b/std/type_traits.hpp
index 659b6ba275..1704426238 100644
--- a/std/type_traits.hpp
+++ b/std/type_traits.hpp
@@ -26,6 +26,13 @@ using std::is_signed;
using std::is_unsigned;
using std::is_floating_point;
using std::is_integral;
+using std::is_arithmetic;
+using std::is_pod;
+
+/// @todo clang on linux doesn't have is_trivially_copyable.
+#ifndef OMIM_OS_LINUX
+using std::is_trivially_copyable;
+#endif
#ifdef DEBUG_NEW
#define new DEBUG_NEW