Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--routing/pedestrian_model.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/routing/pedestrian_model.cpp b/routing/pedestrian_model.cpp
index 6e9bc8c03d..af22fa59f3 100644
--- a/routing/pedestrian_model.cpp
+++ b/routing/pedestrian_model.cpp
@@ -575,7 +575,7 @@ routing::VehicleModel::InitListT const g_pedestrianLimitsUK =
};
// USA
-routing::VehicleModel::InitListT const g_pedestrianLimitsUSA =
+routing::VehicleModel::InitListT const g_pedestrianLimitsUS =
{
{ {"highway", "trunk"}, kSpeedTrunkKMpH },
{ {"highway", "trunk_link"}, kSpeedTrunkLinkKMpH },
@@ -679,7 +679,7 @@ PedestrianModelFactory::PedestrianModelFactory()
m_models["Turkey"] = make_shared<PedestrianModel>(g_pedestrianLimitsTurkey);
m_models["Ukraine"] = make_shared<PedestrianModel>(g_pedestrianLimitsUkraine);
m_models["UK"] = make_shared<PedestrianModel>(g_pedestrianLimitsUK);
- m_models["US"] = make_shared<PedestrianModel>(g_pedestrianLimitsUSA);
+ m_models["US"] = make_shared<PedestrianModel>(g_pedestrianLimitsUS);
}
shared_ptr<IVehicleModel> PedestrianModelFactory::GetVehicleModel() const