From 5ce465ce23909e982d7946acb0aabc4d7b2cf04e Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Fri, 29 Apr 2016 00:15:31 +0200 Subject: [PATCH] Remove extra ; in PostProcessing --- src/engine/guidance/post_processing.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/guidance/post_processing.cpp b/src/engine/guidance/post_processing.cpp index c82c38e1a..b1819e407 100644 --- a/src/engine/guidance/post_processing.cpp +++ b/src/engine/guidance/post_processing.cpp @@ -37,7 +37,7 @@ void invalidateStep(RouteStep &step) { step = {}; step.maneuver.instruction = TurnInstruction::NO_TURN(); -}; +} void print(const std::vector &steps) { @@ -312,7 +312,7 @@ bool collapsable(const RouteStep &step) { const constexpr double MAX_COLLAPSE_DISTANCE = 25; return step.distance < MAX_COLLAPSE_DISTANCE; -}; +} void collapseTurnAt(std::vector &steps, const std::size_t two_back_index,