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:
authorAlex Zolotarev <alex@maps.me>2015-01-11 07:58:08 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:35:59 +0300
commit42eecb6c9ead1a8ff39c2463e688c6a69222d3a1 (patch)
tree6130bd68e5d15087ffb5b935c7db5857fa1f459e /storage
parentf74bd1a270db8d699769a34e5f27dc7e10f4d6aa (diff)
Warning fixes
Diffstat (limited to 'storage')
-rw-r--r--storage/country.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/storage/country.cpp b/storage/country.cpp
index d3f5a4ea8f..7821e73fa7 100644
--- a/storage/country.cpp
+++ b/storage/country.cpp
@@ -16,9 +16,11 @@ string CountryFile::GetFileWithExt(TMapOptions opt) const
{
case TMapOptions::EMapOnly: return m_fileName + DATA_FILE_EXTENSION;
case TMapOptions::ECarRouting: return m_fileName + DATA_FILE_EXTENSION + ROUTING_FILE_EXTENSION;
- }
- ASSERT(false, ());
+ case TMapOptions::EMapWithCarRouting:
+ default:
+ ASSERT(false, ());
+ }
return string();
}