From 8e07882081929068cedf92c9e87a1da55b6d94bc Mon Sep 17 00:00:00 2001 From: Olga Khlopkova Date: Mon, 23 Sep 2019 17:26:06 +0300 Subject: [PATCH] Changed 'const & val' to 'const val' --- routing/base/followed_polyline.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routing/base/followed_polyline.cpp b/routing/base/followed_polyline.cpp index ea9cdd6199..56225aff48 100644 --- a/routing/base/followed_polyline.cpp +++ b/routing/base/followed_polyline.cpp @@ -218,11 +218,11 @@ FollowedPolyline::UpdatedProjection FollowedPolyline::GetClosestMatchingProjecti double minDist = std::numeric_limits::max(); double minDistUnmatching = minDist; - m2::PointD const & currPos = posRect.Center(); + m2::PointD const currPos = posRect.Center(); for (size_t i = startIdx; i < endIdx; ++i) { - m2::PointD const & pt = m_segProj[i].ClosestPointTo(currPos); + m2::PointD const pt = m_segProj[i].ClosestPointTo(currPos); if (!posRect.IsPointInside(pt)) continue;