forked from organicmaps/organicmaps
[search] Do not index duplicate entries.
This commit is contained in:
parent
d9b3668a88
commit
3a20f250d5
1 changed files with 1 additions and 0 deletions
|
@ -115,6 +115,7 @@ void indexer::BuildSearchIndex(FeaturesVector const & featuresVector, Writer & w
|
|||
vector<FeatureName> names;
|
||||
featuresVector.ForEachOffset(FeatureInserter(names));
|
||||
sort(names.begin(), names.end());
|
||||
names.erase(unique(names.begin(), names.end()), names.end());
|
||||
trie::Build(writer, names.begin(), names.end(),
|
||||
trie::builder::MaxValueEdgeBuilder<MaxValueCalc>());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue