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:
authorDarafei Praliaskouski <komzpa@gmail.com>2013-02-19 18:49:53 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:51:09 +0300
commit6560c9db2f56e6c9a4cbef38e8aeba8e06363d1b (patch)
treed026ea176ff92d4c753a700d7e018206e7c71085 /indexer/types_mapping.cpp
parent4068a71264aaac998653e6c2521413ff9a7fd07b (diff)
support for repeated type name
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 79a0b40048..12e538d3a1 100644
--- a/indexer/types_mapping.cpp
+++ b/indexer/types_mapping.cpp
@@ -33,7 +33,7 @@ void IndexAndTypeMapping::Add(uint32_t ind, uint32_t type)
ASSERT_EQUAL ( ind, m_types.size(), () );
m_types.push_back(type);
- CHECK ( m_map.insert(make_pair(type, ind)).second, (classif().GetFullObjectName(type), ind) );
+ m_map.insert(make_pair(type, ind));
}
uint32_t IndexAndTypeMapping::GetIndex(uint32_t t) const