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-07-21 09:29:18 +0300
committerVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-07-23 10:25:12 +0300
commit1f06ea2f68c68f80464142ee66d89a56de8ec900 (patch)
treefd36718baa8f20eff54386bb1e9ba4820ecdfe3b /routing
parent6ab081563cc1c3365837a85e9e3bd723088fa9b3 (diff)
Correct working altitude_loader in case of absence altitude section in mwm.
Diffstat (limited to 'routing')
-rw-r--r--routing/features_road_graph.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/routing/features_road_graph.hpp b/routing/features_road_graph.hpp
index 3c82ca2f1e..753955718a 100644
--- a/routing/features_road_graph.hpp
+++ b/routing/features_road_graph.hpp
@@ -81,8 +81,8 @@ private:
struct Value
{
- Value(MwmSet::MwmHandle && handle, MwmValue const * MwmValue)
- : mwmHandle(move(handle)), altitudeLoader(MwmValue)
+ Value(MwmSet::MwmHandle && handle, MwmValue const * mwmValue)
+ : mwmHandle(move(handle)), altitudeLoader(mwmValue)
{
}