Minor warning fix

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-02-11 19:06:18 +01:00 committed by Viktor Govako
parent 15463fdf6f
commit 6bbe05bb99

View file

@ -214,7 +214,7 @@ VehicleModel::SurfaceInitList const & CarModel::GetSurfaces() { return car_model
CarModelFactory::CarModelFactory(CountryParentNameGetterFn const & countryParentNameGetterFn)
: VehicleModelFactory(countryParentNameGetterFn)
{
m_models[""] = make_shared<CarModel>(
m_models[""] = std::make_shared<CarModel>(
car_model::kCarOptionsDefault,
HighwayBasedInfo(kHighwayBasedSpeeds, kHighwayBasedFactors));
@ -223,7 +223,7 @@ CarModelFactory::CarModelFactory(CountryParentNameGetterFn const & countryParent
auto const * country = kv.first;
auto const & limit = kv.second;
m_models[country] =
make_shared<CarModel>(limit, HighwayBasedInfo(kHighwayBasedSpeeds, kHighwayBasedFactors));
std::make_shared<CarModel>(limit, HighwayBasedInfo(kHighwayBasedSpeeds, kHighwayBasedFactors));
}
}
} // namespace routing