From 9b33760ce9eb08bec383869d1172158e318c0835 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sat, 30 Sep 2023 23:11:51 +0200 Subject: [PATCH] Fixed unused variable warnings Signed-off-by: Alexander Borsuk --- drape_frontend/stylist.cpp | 16 +++++++++------- search/ranker.cpp | 4 +--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/drape_frontend/stylist.cpp b/drape_frontend/stylist.cpp index 060daf9455..1d335d5589 100644 --- a/drape_frontend/stylist.cpp +++ b/drape_frontend/stylist.cpp @@ -90,13 +90,15 @@ void CaptionDescription::Init(FeatureType & f, int8_t deviceLang, int zoomLevel, void Stylist::ProcessKey(FeatureType & f, drule::Key const & key) { drule::BaseRule const * const dRule = drule::rules().Find(key); - +#ifdef DEBUG + using feature::GeomType; auto const geomType = f.GetGeomType(); +#endif // DEBUG switch (key.m_type) { case drule::symbol: ASSERT(dRule->GetSymbol() != nullptr && m_symbolRule == nullptr && - (geomType == feature::GeomType::Point || geomType == feature::GeomType::Area), + (geomType == GeomType::Point || geomType == GeomType::Area), (m_symbolRule == nullptr, geomType, f.DebugString(0, true))); m_symbolRule = dRule; break; @@ -105,28 +107,28 @@ void Stylist::ProcessKey(FeatureType & f, drule::Key const & key) ASSERT(dRule->GetCaption(0) != nullptr, (f.DebugString(0, true))); if (key.m_type == drule::caption) { - ASSERT(m_captionRule == nullptr && (geomType == feature::GeomType::Point || geomType == feature::GeomType::Area), + ASSERT(m_captionRule == nullptr && (geomType == GeomType::Point || geomType == GeomType::Area), (geomType, f.DebugString(0, true))); m_captionRule = dRule; } else { - ASSERT(m_pathtextRule == nullptr && geomType == feature::GeomType::Line, + ASSERT(m_pathtextRule == nullptr && geomType == GeomType::Line, (geomType, f.DebugString(0, true))); m_pathtextRule = dRule; } break; case drule::shield: - ASSERT(dRule->GetShield() != nullptr && m_shieldRule == nullptr && geomType == feature::GeomType::Line, + ASSERT(dRule->GetShield() != nullptr && m_shieldRule == nullptr && geomType == GeomType::Line, (m_shieldRule == nullptr, geomType, f.DebugString(0, true))); m_shieldRule = dRule; break; case drule::line: - ASSERT(dRule->GetLine() != nullptr && geomType == feature::GeomType::Line, (geomType, f.DebugString(0, true))); + ASSERT(dRule->GetLine() != nullptr && geomType == GeomType::Line, (geomType, f.DebugString(0, true))); m_lineRules.push_back(dRule); break; case drule::area: - ASSERT(dRule->GetArea() != nullptr && geomType == feature::GeomType::Area, (geomType, f.DebugString(0, true))); + ASSERT(dRule->GetArea() != nullptr && geomType == GeomType::Area, (geomType, f.DebugString(0, true))); if (key.m_hatching) { ASSERT(m_hatchingRule == nullptr, (f.DebugString(0, true))); diff --git a/search/ranker.cpp b/search/ranker.cpp index aec46fa380..5835111a09 100644 --- a/search/ranker.cpp +++ b/search/ranker.cpp @@ -853,8 +853,6 @@ void Ranker::MakeRankerResults() { LOG(LDEBUG, ("PreRankerResults number =", m_preRankerResults.size())); - bool const isViewportMode = m_geocoderParams.m_mode == Mode::Viewport; - RankerResultMaker maker(*this, m_dataSource, m_infoGetter, m_reverseGeocoder, m_geocoderParams); for (auto const & r : m_preRankerResults) { @@ -862,7 +860,7 @@ void Ranker::MakeRankerResults() if (!p) continue; - ASSERT(!isViewportMode || m_geocoderParams.m_pivot.IsPointInside(p->GetCenter()), (r)); + ASSERT(m_geocoderParams.m_mode != Mode::Viewport || m_geocoderParams.m_pivot.IsPointInside(p->GetCenter()), (r)); // Do not filter any _duplicates_ here. Leave it for high level Results class. m_tentativeResults.push_back(std::move(*p));