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_visibility.hpp')
-rw-r--r--indexer/feature_visibility.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/indexer/feature_visibility.hpp b/indexer/feature_visibility.hpp
index d5c1ca0586..bc1ad86bd2 100644
--- a/indexer/feature_visibility.hpp
+++ b/indexer/feature_visibility.hpp
@@ -57,19 +57,6 @@ namespace feature
pair<int, bool> GetDrawRule(FeatureBase const & f, int level,
vector<drule::Key> & keys, string & names);
- bool UsePopulationRank(uint32_t type);
-
- template <class IterT>
- inline bool UsePopulationRank(IterT beg, IterT end)
- {
- while (beg != end)
- {
- if (UsePopulationRank(*beg++))
- return true;
- }
- return false;
- }
-
/// Used to check whether user types belong to particular classificator set.
class TypeSetChecker
{