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)