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-06-16 17:46:41 +0300
committerVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-06-17 20:01:15 +0300
commit0e113f4388eecdfb4ada253edfd0b8f4c21d4cbc (patch)
tree113d38cd294ceef2e825ebe9f3e5089973697608 /routing/pedestrian_model.cpp
parentb9bab751c13c4f46eb8eac0989f4bccf975866fc (diff)
Review fixes.
Diffstat (limited to 'routing/pedestrian_model.cpp')
-rw-r--r--routing/pedestrian_model.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/routing/pedestrian_model.cpp b/routing/pedestrian_model.cpp
index 510568432f..678a4064d9 100644
--- a/routing/pedestrian_model.cpp
+++ b/routing/pedestrian_model.cpp
@@ -621,13 +621,13 @@ PedestrianModel::PedestrianModel(VehicleModel::InitListT const & speedLimits)
void PedestrianModel::Init()
{
- initializer_list<char const *> hwtagYesfoot = {"hwtag", "yesfoot"};
+ initializer_list<char const *> hwtagYesFoot = {"hwtag", "yesfoot"};
m_noFootType = classif().GetTypeByPath({ "hwtag", "nofoot" });
- m_yesFootType = classif().GetTypeByPath(hwtagYesfoot);
+ m_yesFootType = classif().GetTypeByPath(hwtagYesFoot);
initializer_list<char const *> arr[] = {
- hwtagYesfoot, {"route", "ferry"}, {"man_made", "pier"},
+ hwtagYesFoot, {"route", "ferry"}, {"man_made", "pier"},
};
SetAdditionalRoadTypes(classif(), arr, ARRAY_SIZE(arr));