modified engine for new drules

This commit is contained in:
Darafei Praliaskouski 2013-02-26 16:42:50 +03:00 committed by Alex Zolotarev
parent fbf7a575d0
commit 04c48bb054
2 changed files with 2 additions and 9 deletions

View file

@ -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

View file

@ -33,11 +33,7 @@ void IndexAndTypeMapping::Add(uint32_t ind, uint32_t type)
ASSERT_EQUAL ( ind, m_types.size(), () );
m_types.push_back(type);
if (!m_map.insert(make_pair(type, ind)).second)
{
string const name = classif().GetFullObjectName(type);
CHECK_EQUAL(name, "mapswithme|", ());
}
m_map.insert(make_pair(type, ind));
}
uint32_t IndexAndTypeMapping::GetIndex(uint32_t t) const