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/interval_index.hpp
parent9e2c0b978e26d5b668fa36c3a01fac79913932db (diff)
Replaced boost’s STATIC_ASSERT with a C++11 one.
Diffstat (limited to 'indexer/interval_index.hpp')
-rw-r--r--indexer/interval_index.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/indexer/interval_index.hpp b/indexer/interval_index.hpp
index ab83cdc49c..1f6298a1a8 100644
--- a/indexer/interval_index.hpp
+++ b/indexer/interval_index.hpp
@@ -9,8 +9,6 @@
#include "base/assert.hpp"
#include "base/buffer_vector.hpp"
-#include "std/static_assert.hpp"
-
class IntervalIndexBase : public IntervalIndexIFace
{
@@ -24,7 +22,7 @@ public:
uint8_t m_LeafBytes;
};
#pragma pack(pop)
- STATIC_ASSERT(sizeof(Header) == 4);
+ static_assert(sizeof(Header) == 4, "");
static inline uint32_t BitmapSize(uint32_t bitsPerLevel)
{