From b3ccbc86bb4468168f7138d67b2c8db9b7872dd9 Mon Sep 17 00:00:00 2001 From: Yuri Gorshenin Date: Mon, 13 Apr 2015 13:01:45 +0300 Subject: [PATCH] [pedestrian] Compilation fixes. --- map/framework.cpp | 4 ++-- map/routing_session.hpp | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) 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"