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>2017-05-01 15:57:45 +0300
committerVladiMihaylenko <vxmihaylenko@gmail.com>2017-05-02 14:29:04 +0300
commit0bd410b36d981d168bab62451f6bb8ca70887d6f (patch)
tree44a775c2dd8e17a61ddbadc8511c7b1ace0fc01d
parent532dd4269e6093e47af737b8fc85528128dc5ee4 (diff)
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;
}
}