From 52dcb00563d0cad7b15b0598fd09345b06b00102 Mon Sep 17 00:00:00 2001 From: Michael Bell Date: Wed, 3 Apr 2024 18:29:22 +0100 Subject: [PATCH] Update approach.hpp --- include/engine/approach.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/engine/approach.hpp b/include/engine/approach.hpp index abd35bd9d..60fd68a46 100644 --- a/include/engine/approach.hpp +++ b/include/engine/approach.hpp @@ -36,8 +36,8 @@ namespace osrm::engine enum class Approach : std::uint8_t { CURB = 0, - OPPOSITE = 1, - UNRESTRICTED = 2 + UNRESTRICTED = 1, + OPPOSITE = 2 }; } // namespace osrm::engine