From f0001bb655b7c81119768c85caf9afffc8fa808f Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Mon, 6 May 2024 21:22:01 +0200 Subject: [PATCH] Fix formatting, again --- include/guidance/turn_instruction.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/guidance/turn_instruction.hpp b/include/guidance/turn_instruction.hpp index c4ccb0198..beffda0c8 100644 --- a/include/guidance/turn_instruction.hpp +++ b/include/guidance/turn_instruction.hpp @@ -169,7 +169,8 @@ inline bool hasRoundaboutType(const TurnInstruction instruction) TurnType::ExitRoundaboutIntersection, TurnType::StayOnRoundabout}; - return std::find(valid_types.cbegin(), valid_types.cend(), instruction.type) != valid_types.cend(); + return std::find(valid_types.cbegin(), valid_types.cend(), instruction.type) != + valid_types.cend(); } inline bool entersRoundabout(const guidance::TurnInstruction instruction)