[core] Remove compilation warnings due to missing switch options

Signed-off-by: Gonzalo Pesquero <gpesquero@yahoo.es>
This commit is contained in:
Gonzalo Pesquero 2024-01-20 17:30:25 +01:00 committed by Alexander Borsuk
parent a9805c1d19
commit aa095b006c

View file

@ -1680,13 +1680,23 @@ void Geocoder::FindPaths(BaseContext & ctx)
switch (l.m_type)
{
case Model::TYPE_BUILDING:
// Actualy, it means that we have BUILDING layer with LooksLikeHouseNumber token.
// Actually, it means that we have BUILDING layer with LooksLikeHouseNumber token.
hasBuilding = l.m_sortedFeatures->empty();
break;
case Model::TYPE_STREET:
case Model::TYPE_SUBURB:
hasStreetOrSuburb = true;
break;
case Model::TYPE_CITY:
case Model::TYPE_COMPLEX_POI:
case Model::TYPE_COUNT:
case Model::TYPE_COUNTRY:
case Model::TYPE_STATE:
case Model::TYPE_SUBPOI:
case Model::TYPE_UNCLASSIFIED:
case Model::TYPE_VILLAGE:
// TODO: These types could be processed in a different way in the future...
break;
}
}