diff --git a/routing/nearest_edge_finder.cpp b/routing/nearest_edge_finder.cpp index 0a7e8351e5..471e029595 100644 --- a/routing/nearest_edge_finder.cpp +++ b/routing/nearest_edge_finder.cpp @@ -62,7 +62,7 @@ void NearestEdgeFinder::AddInformationSource(IRoadGraph::FullRoadInfo const & ro else { double const distFromStartM = MercatorBounds::DistanceOnEarth(segStart.GetPoint(), closestPoint); - ASSERT_LESS_OR_EQUAL(distFromStartM, segLenM, (featureId)); + ASSERT_LESS_OR_EQUAL(distFromStartM, segLenM, (roadInfo.m_featureId)); projPointAlt = startAlt + static_cast((endAlt - startAlt) * distFromStartM / segLenM); } diff --git a/routing/routing_helpers.cpp b/routing/routing_helpers.cpp index 1dd03fb8a1..3f48fececf 100644 --- a/routing/routing_helpers.cpp +++ b/routing/routing_helpers.cpp @@ -187,9 +187,9 @@ bool RectCoversPolyline(IRoadGraph::JunctionVec const & junctions, m2::RectD con if (junctions.size() == 1) return rect.IsPointInside(junctions.front().GetPoint()); - for (auto const & j : junctions) + for (auto const & junction : junctions) { - if (rect.IsPointInside(j.GetPoint())) + if (rect.IsPointInside(junction.GetPoint())) return true; }