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();