diff --git a/map/framework.cpp b/map/framework.cpp index 0b8bc23366..b7e75cfd65 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -14,9 +14,9 @@ #include "defines.hpp" -#include "routing/route.hpp" -#include "routing/osrm_router.hpp" #include "routing/astar_router.hpp" +#include "routing/osrm_router.hpp" +#include "routing/route.hpp" #include "search/search_engine.hpp" #include "search/result.hpp" diff --git a/map/routing_session.hpp b/map/routing_session.hpp index 799bd9afa5..044f1bc1d1 100644 --- a/map/routing_session.hpp +++ b/map/routing_session.hpp @@ -1,7 +1,8 @@ #pragma once -#include "routing/router.hpp" +#include "routing/async_router.hpp" #include "routing/route.hpp" +#include "routing/router.hpp" #include "platform/location.hpp"