forked from organicmaps/organicmaps
[routing] Pull request #5773 review fixes
This commit is contained in:
parent
2f990077e9
commit
bf70d80a54
1 changed files with 2 additions and 1 deletions
|
@ -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<m4::Tree<NumMwmId>> MakeNumMwmTree(NumMwmIds const & numMwmIds,
|
||||
CountryInfoGetter const & countryInfoGetter)
|
||||
{
|
||||
auto tree = make_unique<m4::Tree<NumMwmId>>();
|
||||
auto tree = my::make_unique<m4::Tree<NumMwmId>>();
|
||||
|
||||
numMwmIds.ForEachId([&](NumMwmId numMwmId) {
|
||||
auto const & countryName = numMwmIds.GetFile(numMwmId).GetName();
|
||||
|
|
Loading…
Add table
Reference in a new issue