From d186ae18632df5a926999a91176127e66003cb13 Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Wed, 22 Jun 2016 13:20:55 +0200 Subject: [PATCH] Fix semi-colon warnings --- include/extractor/guidance/toolkit.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/extractor/guidance/toolkit.hpp b/include/extractor/guidance/toolkit.hpp index 5eb3fa864..bb5281e48 100644 --- a/include/extractor/guidance/toolkit.hpp +++ b/include/extractor/guidance/toolkit.hpp @@ -474,7 +474,7 @@ inline bool hasRoundaboutType(const TurnInstruction instruction) TurnType::StayOnRoundabout}; const auto valid_end = valid_types + 13; return std::find(valid_types, valid_end, instruction.type) != valid_end; -}; +} } // namespace guidance } // namespace extractor