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.cpp')
-rw-r--r--indexer/feature_visibility.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/indexer/feature_visibility.cpp b/indexer/feature_visibility.cpp
index 0ecaeeb698..8018efc3d7 100644
--- a/indexer/feature_visibility.cpp
+++ b/indexer/feature_visibility.cpp
@@ -12,9 +12,7 @@ namespace
{
bool NeedProcessParent(ClassifObject const * p)
{
- string const & n = p->GetName();
- // same as is_mark_key (@see osm2type.cpp)
- return (n == "bridge" || n == "junction" || n == "oneway" || n == "fee");
+ return false;
}
}
@@ -38,7 +36,6 @@ Classificator::ProcessObjects(uint32_t type, ToDo & toDo) const
path[i++] = p;
toDo(p);
}
-
if (path.empty())
return res;
else