From bf70d80a541ef14304119e6270c26dfe613c8cb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BE=D0=B1=D1=80=D1=8B=D0=B8=CC=86=20=D0=AD=D1=8D?= =?UTF-8?q?=D1=85?= Date: Thu, 6 Apr 2017 15:08:11 +0300 Subject: [PATCH] [routing] Pull request #5773 review fixes --- map/framework.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/map/framework.cpp b/map/framework.cpp index e54758976f..cfe37af181 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -88,6 +88,7 @@ #include "base/logging.hpp" #include "base/math.hpp" #include "base/scope_guard.hpp" +#include "base/stl_add.hpp" #include "base/timer.hpp" #include "std/algorithm.hpp" @@ -209,7 +210,7 @@ string MakeSearchBookingUrl(Index const & index, booking::Api const & bookingApi unique_ptr> MakeNumMwmTree(NumMwmIds const & numMwmIds, CountryInfoGetter const & countryInfoGetter) { - auto tree = make_unique>(); + auto tree = my::make_unique>(); numMwmIds.ForEachId([&](NumMwmId numMwmId) { auto const & countryName = numMwmIds.GetFile(numMwmId).GetName();