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:
authorburivuh <burivuh@maps.me>2017-05-01 16:45:09 +0300
committerGitHub <noreply@github.com>2017-05-01 16:45:09 +0300
commitf06cb77546968f460aa91bae0fc5bb1d2c92174d (patch)
tree68f3d9e1253212df7840c31dba84a9c22b9acd63
parent25ed3b839b41f342b9a5fa83ea6abc1e5b1c0db8 (diff)
parent82b110ffa63e41018b54317d51ac7372863fb69a (diff)
Merge pull request #5952 from bykoianko/release-73-buildfixbeta-787
iOS build fix.
-rw-r--r--iphone/Maps/Core/Routing/MWMCoreRouterType.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/iphone/Maps/Core/Routing/MWMCoreRouterType.h b/iphone/Maps/Core/Routing/MWMCoreRouterType.h
index 0f6e964ba2..6b1e853244 100644
--- a/iphone/Maps/Core/Routing/MWMCoreRouterType.h
+++ b/iphone/Maps/Core/Routing/MWMCoreRouterType.h
@@ -19,5 +19,8 @@ static inline MWMRouterType routerType(routing::RouterType type)
case routing::RouterType::Pedestrian: return MWMRouterTypePedestrian;
case routing::RouterType::Bicycle: return MWMRouterTypeBicycle;
case routing::RouterType::Taxi: return MWMRouterTypeTaxi;
+ case routing::RouterType::Count:
+ ASSERT(false, ("RouterType is Count."));
+ return MWMRouterTypeVehicle;
}
}