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:
authorMaxim Pimenov <m@maps.me>2015-06-03 17:35:18 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:07 +0300
commit58fa09b57ec14a0a474e8fa5d476c2a71aaa5874 (patch)
tree38fc26d81418c30ebd8b2f303bda26902e66f590 /indexer/feature_visibility.cpp
parent3f37dc59dcf8277b55ac6da02440185bcfc68c5b (diff)
[omim] [indexer] Reorder indexing: all buckets for a feature instead of all features for a bucket.
Diffstat (limited to 'indexer/feature_visibility.cpp')
-rw-r--r--indexer/feature_visibility.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indexer/feature_visibility.cpp b/indexer/feature_visibility.cpp
index 7d0c89e2ec..7531bb9c87 100644
--- a/indexer/feature_visibility.cpp
+++ b/indexer/feature_visibility.cpp
@@ -335,6 +335,7 @@ int GetMinDrawableScale(FeatureBase const & f)
if (IsDrawableForIndex(f, level))
return level;
+ ASSERT(false, ("Feature is never visible."));
return -1;
}