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)) {