Assume "lit" type as useless for POI.

This commit is contained in:
vng 2013-08-30 20:17:17 +03:00 committed by Alex Zolotarev
parent eb80547d63
commit 46b5341027

View file

@ -49,12 +49,12 @@ public:
{
Classificator const & c = classif();
char const * arr1[][1] = { { "building" }, { "oneway" } };
char const * arr1[][1] = { { "building" }, { "oneway" }, { "lit" } };
for (size_t i = 0; i < ARRAY_SIZE(arr1); ++i)
m_types.push_back(c.GetTypeByPath(vector<string>(arr1[i], arr1[i] + 1)));
}
bool operator()(uint32_t t) const
bool operator() (uint32_t t) const
{
return (find(m_types.begin(), m_types.end(), t) != m_types.end());
}