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 13:39:30 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:30 +0300
commitf2aa6313315d27176ca3163f19c8fbe3e7919f5c (patch)
treee8a7354c08a86a6daeb99be6bcc604ba94720598 /indexer/old
parent9e2c0b978e26d5b668fa36c3a01fac79913932db (diff)
Replaced boost’s STATIC_ASSERT with a C++11 one.
Diffstat (limited to 'indexer/old')
-rw-r--r--indexer/old/interval_index_101.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/old/interval_index_101.hpp b/indexer/old/interval_index_101.hpp
index 82b40d6361..438d2bae73 100644
--- a/indexer/old/interval_index_101.hpp
+++ b/indexer/old/interval_index_101.hpp
@@ -38,7 +38,7 @@ public:
public:
uint16_t m_Count[256];
};
- STATIC_ASSERT(sizeof(Index) == 2 * 258);
+ static_assert(sizeof(Index) == 2 * 258, "");
};
// TODO: IntervalIndex shouldn't do SwapIfBigEndian for ValueT.