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_holder.hpp
parent36f7f7c9d6db473c37e85e4af1df332e4ee007b3 (diff)
[search] Use MemTrie for street synonyms.
Diffstat (limited to 'indexer/categories_holder.hpp')
-rw-r--r--indexer/categories_holder.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/categories_holder.hpp b/indexer/categories_holder.hpp
index 7475cdf235..d46fd47615 100644
--- a/indexer/categories_holder.hpp
+++ b/indexer/categories_holder.hpp
@@ -52,7 +52,7 @@ public:
private:
using String = strings::UniString;
using Type2CategoryCont = multimap<uint32_t, shared_ptr<Category>>;
- using Trie = my::MemTrie<String, uint32_t>;
+ using Trie = my::MemTrie<String, my::VectorValues<uint32_t>>;
Type2CategoryCont m_type2cat;