From 773d2bcda661140496b4b826c7d1411d19890491 Mon Sep 17 00:00:00 2001 From: Mikhail Gorbushin Date: Thu, 4 Apr 2019 14:01:57 +0300 Subject: [PATCH] [routing] fix style --- routing/index_graph_starter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routing/index_graph_starter.cpp b/routing/index_graph_starter.cpp index f6a0b1d538..da2bf18fdc 100644 --- a/routing/index_graph_starter.cpp +++ b/routing/index_graph_starter.cpp @@ -363,12 +363,12 @@ void IndexGraphStarter::AddFakeEdges(Segment const & segment, bool isOutgoing, v // |segment| |s| // *------------>*-----------> bool const sIsOutgoing = - GetJunction(segment, true /*front */) == GetJunction(s, false /* front */); + GetJunction(segment, true /* front */) == GetJunction(s, false /* front */); // |s| |segment| // *------------>*-----------> bool const sIsIngoing = - GetJunction(s, true /*front */) == GetJunction(segment, false /* front */); + GetJunction(s, true /* front */) == GetJunction(segment, false /* front */); if ((isOutgoing && sIsOutgoing) || (!isOutgoing && sIsIngoing)) {