Minor gcc warning fixes

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-08-04 22:39:56 +00:00 committed by Alexander Borsuk
parent 43985a3ab7
commit 62389aa4d5
2 changed files with 3 additions and 3 deletions

View file

@ -249,7 +249,7 @@ void EditorDialog::OnSave()
case osm::Props::ContactTwitter: m_feature.SetTwitterPage(v); break;
case osm::Props::ContactVk: m_feature.SetVkPage(v); break;
case osm::Props::ContactLine: m_feature.SetLinePage(v); break;
case osm::Props::Internet: ASSERT(false, ("Is handled separately above."));
case osm::Props::Internet: CHECK(false, ("Is handled separately above."));
case osm::Props::Cuisine:
m_feature.SetCuisines(strings::Tokenize(v, ";"));
break;

View file

@ -631,8 +631,8 @@ private:
if (info.IsNotEmpty() && info.m_name == m_ranker.m_params.m_pivotRegion)
return base::Clamp(static_cast<int>(rank * 1.7), 0, 0xFF);
// Fall through like "STATE" for cities without info.
}
// Fallthrough like "STATE" for cities without info.
} [[fallthrough]];
case Model::TYPE_STATE: return rank / 1.5;
case Model::TYPE_COUNTRY: return rank;