From f6169a2d4a82041e038b77657643a9b889f12520 Mon Sep 17 00:00:00 2001 From: Roman Kuznetsov Date: Mon, 26 Jun 2017 10:10:16 +0300 Subject: [PATCH] Review fixes --- map/routing_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map/routing_manager.cpp b/map/routing_manager.cpp index 1ca3344b22..6f5e647027 100644 --- a/map/routing_manager.cpp +++ b/map/routing_manager.cpp @@ -54,7 +54,7 @@ void FillTurnsDistancesForRendering(std::vector con // We do not render some of turn directions. if (t.m_turn == TurnDirection::NoTurn || t.m_turn == TurnDirection::StartAtEndOfStreet || t.m_turn == TurnDirection::StayOnRoundAbout || t.m_turn == TurnDirection::TakeTheExit || - t.m_turn == TurnDirection::ReachedYourDestination || t.m_turn == TurnDirection::Count) + t.m_turn == TurnDirection::ReachedYourDestination) { continue; }