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>2012-05-24 15:46:57 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:39:05 +0300
commit8378763418a36a378f4a5faf7a9705e9b7951b1c (patch)
treeaa3df111abb671e6658beadd819a56815e563c72 /indexer/types_mapping.cpp
parent71dfe1b9e3ac1a161c2bc830ec5847f407eaa863 (diff)
Fix some debug print.
Diffstat (limited to 'indexer/types_mapping.cpp')
-rw-r--r--indexer/types_mapping.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/types_mapping.cpp b/indexer/types_mapping.cpp
index 539986b109..9f6ee1a54e 100644
--- a/indexer/types_mapping.cpp
+++ b/indexer/types_mapping.cpp
@@ -33,5 +33,5 @@ void IndexAndTypeMapping::Add(uint32_t ind, uint32_t type)
ASSERT_EQUAL ( ind, m_types.size(), () );
m_types.push_back(type);
- VERIFY ( m_map.insert(make_pair(type, ind)).second, (type, ind) );
+ VERIFY ( m_map.insert(make_pair(type, ind)).second, (classif().GetFullObjectName(type), ind) );
}