diff --git a/search/search.pro b/search/search.pro index 93fa199a9a..fa528a8561 100644 --- a/search/search.pro +++ b/search/search.pro @@ -17,7 +17,6 @@ HEADERS += \ search_query.hpp \ result.hpp \ latlon_match.hpp \ - search_trie_matching.hpp \ approximate_string_match.hpp \ feature_offset_match.hpp \ category_info.hpp \ diff --git a/search/search_trie_matching.hpp b/search/search_trie_matching.hpp deleted file mode 100644 index f12e98a7bf..0000000000 --- a/search/search_trie_matching.hpp +++ /dev/null @@ -1,15 +0,0 @@ -#pragma once -#include "../indexer/search_trie.hpp" - -class FeaturesVector; - -namespace search -{ - -namespace impl { class Query; } - -void MatchAgainstTrie(impl::Query & query, - TrieIterator & trieRoot, - FeaturesVector const & featuresVector); - -} // namespace search