forked from organicmaps/organicmaps
[search] Enable SearchQueryV2 by default.
This commit is contained in:
parent
6488299308
commit
228b0c70c3
1 changed files with 0 additions and 8 deletions
|
@ -1,11 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "search/search_query.hpp"
|
||||
#include "search/suggest.hpp"
|
||||
|
||||
#if defined(USE_SEARCH_QUERY_V2)
|
||||
#include "search/v2/search_query_v2.hpp"
|
||||
#endif // defined(USE_SEARCH_QUERY_V2)
|
||||
|
||||
#include "std/unique_ptr.hpp"
|
||||
|
||||
|
@ -25,11 +21,7 @@ public:
|
|||
vector<Suggest> const & suggests,
|
||||
storage::CountryInfoGetter const & infoGetter)
|
||||
{
|
||||
#if defined(USE_SEARCH_QUERY_V2)
|
||||
return make_unique<v2::SearchQueryV2>(index, categories, suggests, infoGetter);
|
||||
#else
|
||||
return make_unique<Query>(index, categories, suggests, infoGetter);
|
||||
#endif // defined(USE_SEARCH_QUERY_V2)
|
||||
}
|
||||
};
|
||||
} // namespace search
|
||||
|
|
Loading…
Add table
Reference in a new issue