From 07af1fd83e7f9388bfb5a049a1cfc2d099aa7541 Mon Sep 17 00:00:00 2001 From: Yury Melnichek Date: Tue, 27 Sep 2011 00:40:32 +0200 Subject: [PATCH] [search] Rename feature_match.hpp -> feature_offset_match.hpp --- search/{feature_match.hpp => feature_offset_match.hpp} | 0 search/search.pro | 2 +- search/search_query.cpp | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename search/{feature_match.hpp => feature_offset_match.hpp} (100%) diff --git a/search/feature_match.hpp b/search/feature_offset_match.hpp similarity index 100% rename from search/feature_match.hpp rename to search/feature_offset_match.hpp diff --git a/search/search.pro b/search/search.pro index 97bf4b70ba..4278828692 100644 --- a/search/search.pro +++ b/search/search.pro @@ -21,7 +21,7 @@ HEADERS += \ categories_holder.hpp \ search_trie_matching.hpp \ approximate_string_match.hpp \ - feature_match.hpp \ + feature_offset_match.hpp \ SOURCES += \ search_engine.cpp \ diff --git a/search/search_query.cpp b/search/search_query.cpp index adfdab9f30..4a46370e6d 100644 --- a/search/search_query.cpp +++ b/search/search_query.cpp @@ -1,6 +1,6 @@ #include "search_query.hpp" #include "categories_holder.hpp" -#include "feature_match.hpp" +#include "feature_offset_match.hpp" #include "latlon_match.hpp" #include "result.hpp" #include "../indexer/feature_covering.hpp"