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:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-04-06 20:02:53 +0300
committerSergey Yershov <syershov@maps.me>2017-04-19 22:04:09 +0300
commitde1c29b3761c4a91d6b3a4f83b746c7947fb850d (patch)
tree25348c8442a2630e16239744d9c934d629370d61 /indexer/indexer_tests
parenta51f90985ae6d37c2a9c8397aad1a1bf79beeedd (diff)
preparation for std migration
Diffstat (limited to 'indexer/indexer_tests')
-rw-r--r--indexer/indexer_tests/trie_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/indexer_tests/trie_test.cpp b/indexer/indexer_tests/trie_test.cpp
index 38265302bd..495e0d6762 100644
--- a/indexer/indexer_tests/trie_test.cpp
+++ b/indexer/indexer_tests/trie_test.cpp
@@ -46,7 +46,7 @@ class SingleValueSerializer
{
public:
#if !defined(OMIM_OS_LINUX)
- static_assert(is_trivially_copyable<TPrimitive>::value, "");
+ static_assert(std::is_trivially_copyable<TPrimitive>::value, "");
#endif
template <typename TWriter>
@@ -64,7 +64,7 @@ public:
using TSerializer = SingleValueSerializer<TValue>;
#if !defined(OMIM_OS_LINUX)
- static_assert(is_trivially_copyable<TPrimitive>::value, "");
+ static_assert(std::is_trivially_copyable<TPrimitive>::value, "");
#endif
ValueList() = default;