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:
authorDarafei Praliaskouski <komzpa@gmail.com>2013-02-26 17:42:50 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:51:21 +0300
commit04c48bb054e3062dda273a4bd3f35911dce5c449 (patch)
tree3e2235ecc2fd69e3f4c113a05ce6ef2b5d209ce7 /indexer/feature_visibility.cpp
parentfbf7a575d019088beb94f6bf253782d87e041b8f (diff)
modified engine for new drules
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