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:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2016-04-27 19:44:11 +0300
committerAlex Zolotarev <alex@maps.me>2016-05-01 10:28:03 +0300
commit9d7fc9dbbe1a2fc816c5afa049b8eab4f827bb2c (patch)
tree3727ff3da3c9ba50a26d7671093c3a4d7d4e44bf /indexer/categories_index.hpp
parent920f2577a35aba443ee33abf36050f7d0c66a505 (diff)
[ios] Implemented new category search.
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 7fb5a310c7..5a9b860dc4 100644
--- a/indexer/categories_index.hpp
+++ b/indexer/categories_index.hpp
@@ -20,7 +20,7 @@ public:
CategoriesIndex() : m_catHolder(&GetDefaultCategories()) {}
- CategoriesIndex(CategoriesHolder const * catHolder) : m_catHolder(catHolder) {}
+ CategoriesIndex(CategoriesHolder const & catHolder) : m_catHolder(&catHolder) {}
CategoriesIndex(CategoriesIndex && other)
: m_catHolder(other.m_catHolder), m_trie(move(other.m_trie))