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:
Diffstat (limited to 'indexer/feature_meta.hpp')
-rw-r--r--indexer/feature_meta.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/indexer/feature_meta.hpp b/indexer/feature_meta.hpp
index 7761e6e383..2ac7ef1a79 100644
--- a/indexer/feature_meta.hpp
+++ b/indexer/feature_meta.hpp
@@ -6,7 +6,6 @@
#include "std/algorithm.hpp"
#include "std/limits.hpp"
#include "std/map.hpp"
-#include "std/static_assert.hpp"
#include "std/string.hpp"
#include "std/vector.hpp"
@@ -38,7 +37,7 @@ namespace feature
FMD_COUNT
};
- STATIC_ASSERT(FMD_COUNT <= 255);
+ static_assert(FMD_COUNT <= 255, "Meta types count is limited to one byte.");
bool Add(EType type, string const & s)
{