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:
authorYury Melnichek <melnichek@malinovka.local>2011-08-21 20:13:52 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:22:09 +0300
commit490f954951a7cead4e8a1ae87d9f037539285bb4 (patch)
treeb566b267e340312ab9ece959700c5a253b03bcb5 /indexer/search_index_builder.cpp
parentc5ae9bf2e1897a200409bfc95117ff39b9bc9b80 (diff)
[search] Factor out approximate string matching and stop using it. There will be no spelling correction, but search works much faster.
Diffstat (limited to 'indexer/search_index_builder.cpp')
-rw-r--r--indexer/search_index_builder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/search_index_builder.cpp b/indexer/search_index_builder.cpp
index 7f2c54e2db..179601313a 100644
--- a/indexer/search_index_builder.cpp
+++ b/indexer/search_index_builder.cpp
@@ -1,7 +1,7 @@
#include "search_index_builder.hpp"
#include "features_vector.hpp"
#include "../search/search_trie.hpp"
-#include "../search/string_match.hpp"
+#include "../search/string_search_utils.hpp"
#include "../coding/trie_builder.hpp"
#include "../coding/writer.hpp"
#include "../base/string_utils.hpp"