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:
Diffstat (limited to 'search/search_tests_support/test_results_matching.hpp')
-rw-r--r--search/search_tests_support/test_results_matching.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/search/search_tests_support/test_results_matching.hpp b/search/search_tests_support/test_results_matching.hpp
index f6d6fd72d5..0e5c12d57d 100644
--- a/search/search_tests_support/test_results_matching.hpp
+++ b/search/search_tests_support/test_results_matching.hpp
@@ -11,7 +11,7 @@
#include <vector>
class FeatureType;
-class DataSourceBase;
+class DataSource;
namespace generator
{
@@ -74,11 +74,11 @@ std::shared_ptr<MatchingRule> AlternativesMatch(TArgs &&... args)
return std::make_shared<AlternativesMatchingRule>(std::forward<TArgs>(args)...);
}
-bool MatchResults(DataSourceBase const & dataSource, std::vector<std::shared_ptr<MatchingRule>> rules,
+bool MatchResults(DataSource const & dataSource, std::vector<std::shared_ptr<MatchingRule>> rules,
std::vector<search::Result> const & actual);
-bool MatchResults(DataSourceBase const & dataSource, std::vector<std::shared_ptr<MatchingRule>> rules,
+bool MatchResults(DataSource const & dataSource, std::vector<std::shared_ptr<MatchingRule>> rules,
search::Results const & actual);
-bool ResultMatches(DataSourceBase const & dataSource, std::shared_ptr<MatchingRule> rule,
+bool ResultMatches(DataSource const & dataSource, std::shared_ptr<MatchingRule> rule,
search::Result const & result);
std::string DebugPrint(MatchingRule const & rule);