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>2016-03-05 22:14:50 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:52:43 +0300
commit7847d189c7c95911e8fd1bf5bf3bee3c36f08f89 (patch)
tree57621d3e646ec21ed257bd80d26cf04cb8ae730d /indexer/index.cpp
parent36b83eb5c91e5336383c52ffa3788e6d2931c9db (diff)
[editor] Correctly process created features in the Index.
Diffstat (limited to 'indexer/index.cpp')
-rw-r--r--indexer/index.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/index.cpp b/indexer/index.cpp
index 0f0505d394..592e8d6cdb 100644
--- a/indexer/index.cpp
+++ b/indexer/index.cpp
@@ -109,7 +109,7 @@ void Index::FeaturesLoaderGuard::GetFeatureByIndex(uint32_t index, FeatureType &
{
MwmId const & id = m_handle.GetId();
ASSERT_NOT_EQUAL(osm::Editor::FeatureStatus::Deleted, m_editor.GetFeatureStatus(id, index),
- ("Deleted feature was cached. Please review your code."));
+ ("Deleted feature was cached. It should not be here. Please review your code."));
if (!m_editor.Instance().GetEditedFeature(id, index, ft))
GetOriginalFeatureByIndex(index, ft);
}