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:
authortherearesomewhocallmetim <dtv@mapswithme.com>2017-05-02 14:32:14 +0300
committerGitHub <noreply@github.com>2017-05-02 14:32:14 +0300
commitfc262db2ea8c867274d96e030bffe0a3f8d3e386 (patch)
tree44a775c2dd8e17a61ddbadc8511c7b1ace0fc01d
parent532dd4269e6093e47af737b8fc85528128dc5ee4 (diff)
parent0bd410b36d981d168bab62451f6bb8ca70887d6f (diff)
Merge pull request #5963 from VladiMihaylenko/vm-masterbeta-788
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;
}
}