From aafc39e22a28c9254e60d0e30ffb39071726f832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BE=D0=B1=D1=80=D1=8B=D0=B8=CC=86=20=D0=AD=D1=8D?= =?UTF-8?q?=D1=85?= Date: Mon, 15 May 2017 17:04:03 +0300 Subject: [PATCH] [routing] Pull request #6054 review fixes --- routing/index_graph_starter.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/routing/index_graph_starter.cpp b/routing/index_graph_starter.cpp index e285bbd64f..183ae6ddc2 100644 --- a/routing/index_graph_starter.cpp +++ b/routing/index_graph_starter.cpp @@ -10,10 +10,11 @@ m2::PointD CalcProjectionToSegment(Segment const & segment, m2::PointD const & p WorldGraph & graph) { m2::ProjectionToSection projection; - projection.SetBounds(graph.GetPoint(segment, false), graph.GetPoint(segment, true)); + projection.SetBounds(graph.GetPoint(segment, false /* front */), + graph.GetPoint(segment, true /* front */)); return projection(point); } -} +} // namespace namespace routing {