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:
authorvng <viktor.govako@gmail.com>2016-04-27 15:39:54 +0300
committervng <viktor.govako@gmail.com>2016-04-27 15:39:54 +0300
commit5eca1be7e971306754b5eadd2d1c379642834bb5 (patch)
tree274ef26265e3ba8a1a2f8c26f3b9785cae53f671 /indexer/osm_editor.cpp
parent3a7e6807f8d830166bca5cbf70cbeff5453fe52d (diff)
Fixed compilation.
Diffstat (limited to 'indexer/osm_editor.cpp')
-rw-r--r--indexer/osm_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/osm_editor.cpp b/indexer/osm_editor.cpp
index 68c2922e7a..b47fbd661c 100644
--- a/indexer/osm_editor.cpp
+++ b/indexer/osm_editor.cpp
@@ -331,7 +331,7 @@ Editor::FeatureStatus Editor::GetFeatureStatus(MwmSet::MwmId const & mwmId, uint
bool Editor::IsFeatureUploaded(MwmSet::MwmId const & mwmId, uint32_t index) const
{
- auto const * info = GetFeatureTypeInfo(mwmId, index)
+ auto const * info = GetFeatureTypeInfo(mwmId, index);
return info && info->m_uploadStatus == kUploaded;
}