forked from organicmaps/organicmaps
Merge pull request #1131 from syershov/fix-duplicated-types
Remove duplicated types
This commit is contained in:
commit
aa8c8a7009
1 changed files with 4 additions and 0 deletions
|
@ -360,6 +360,10 @@ bool FeatureParams::FinishAddingTypes()
|
|||
newTypes.push_back(candidate);
|
||||
}
|
||||
|
||||
// Remove duplicated types.
|
||||
sort(newTypes.begin(), newTypes.end());
|
||||
newTypes.erase(unique(newTypes.begin(), newTypes.end()), newTypes.end());
|
||||
|
||||
m_Types.swap(newTypes);
|
||||
|
||||
if (m_Types.size() > max_types_count)
|
||||
|
|
Loading…
Add table
Reference in a new issue