From 8dc667f20dba8942954e51d41391c4509861d8c1 Mon Sep 17 00:00:00 2001 From: Moritz Kobitzsch Date: Thu, 27 Oct 2016 20:02:21 +0200 Subject: [PATCH] fix warnings due to superfluous `;` --- src/extractor/guidance/coordinate_extractor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extractor/guidance/coordinate_extractor.cpp b/src/extractor/guidance/coordinate_extractor.cpp index 34bdbcb93..5f4f1d9f1 100644 --- a/src/extractor/guidance/coordinate_extractor.cpp +++ b/src/extractor/guidance/coordinate_extractor.cpp @@ -376,7 +376,7 @@ CoordinateExtractor::GetMaxDeviation(std::vector::const_iterat range_begin, range_end, 0.0, [&](const double current, const util::Coordinate coordinate) { return std::max(current, get_single_deviation(coordinate)); }); -}; +} bool CoordinateExtractor::IsCurve(const std::vector &coordinates, const std::vector &segment_distances, @@ -681,7 +681,7 @@ CoordinateExtractor::GetCorrectedCoordinate(const util::Coordinate fixpoint, return util::Coordinate(corrected_lon, corrected_lat); } -}; +} std::vector CoordinateExtractor::SampleCoordinates(const std::vector &coordinates,