From 6560c9db2f56e6c9a4cbef38e8aeba8e06363d1b Mon Sep 17 00:00:00 2001 From: Darafei Praliaskouski Date: Tue, 19 Feb 2013 17:49:53 +0300 Subject: [PATCH] support for repeated type name --- indexer/types_mapping.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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