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:
authorYuri Gorshenin <y@maps.me>2017-02-27 12:40:20 +0300
committerYuri Gorshenin <y@maps.me>2017-02-27 12:40:20 +0300
commit28bad4ed8b1f421088a9287ca86081e76ce6a59a (patch)
treed16b85583b626e2e4ac528f2c31709250e1b76c3 /indexer/categories_index.hpp
parent36f7f7c9d6db473c37e85e4af1df332e4ee007b3 (diff)
[search] Use MemTrie for street synonyms.
Diffstat (limited to 'indexer/categories_index.hpp')
-rw-r--r--indexer/categories_index.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/categories_index.hpp b/indexer/categories_index.hpp
index a95f1dc2c3..498fbfb489 100644
--- a/indexer/categories_index.hpp
+++ b/indexer/categories_index.hpp
@@ -69,6 +69,6 @@ private:
// here because this class may be used from Objectvie-C
// so a default constructor is needed.
CategoriesHolder const * m_catHolder = nullptr;
- my::MemTrie<string, uint32_t> m_trie;
+ my::MemTrie<string, my::VectorValues<uint32_t>> m_trie;
};
} // namespace indexer