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:
authorConstantin Shalnev <c.shalnev@corp.mail.ru>2015-10-15 17:11:10 +0300
committerConstantin Shalnev <c.shalnev@corp.mail.ru>2015-10-16 10:26:43 +0300
commit545f584efc23ba8a54b88a023ee9690281e5506a (patch)
tree681391468b2e41bf21968a58ed0f3dd73cd6e7e3 /indexer/map_style.cpp
parent7c40f044a5340a14b0f7c1ca3a4dff54f004d9b5 (diff)
Uses limitation values for EDensity and for MapStyle enums
Diffstat (limited to 'indexer/map_style.cpp')
-rw-r--r--indexer/map_style.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/indexer/map_style.cpp b/indexer/map_style.cpp
index d543e9753c..ab6bd66525 100644
--- a/indexer/map_style.cpp
+++ b/indexer/map_style.cpp
@@ -6,9 +6,15 @@ string DebugPrint(MapStyle mapStyle)
{
switch (mapStyle)
{
- case MapStyleLight: return "MapStyleLight";
- case MapStyleDark: return "MapStyleDark";
- case MapStyleClear: return "MapStyleClear";
+ case MapStyleLight:
+ return "MapStyleLight";
+ case MapStyleDark:
+ return "MapStyleDark";
+ case MapStyleClear:
+ return "MapStyleClear";
+
+ case MapStyleCount:
+ break;
}
ASSERT(false, ());
return string();