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:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-04-25 17:37:02 +0300
committerVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-04-25 17:37:02 +0300
commitc8a3aa318ac9bd40e64ae90aa5110ca3ec0c5180 (patch)
treeca786de9bb566f0282700a5bb942334f89bf001c /routing/pedestrian_model.cpp
parentef1b85d4feab1f5c69dd7da3a943c5995eb4db2d (diff)
Review fixes.
Diffstat (limited to 'routing/pedestrian_model.cpp')
-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