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/processor_factory.hpp')
-rw-r--r--search/processor_factory.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/search/processor_factory.hpp b/search/processor_factory.hpp
index 83538df79f..5e0fc0fe78 100644
--- a/search/processor_factory.hpp
+++ b/search/processor_factory.hpp
@@ -1,7 +1,7 @@
#pragma once
+#include "search/processor.hpp"
#include "search/suggest.hpp"
-#include "search/v2/processor_v2.hpp"
#include "std/unique_ptr.hpp"
@@ -21,7 +21,7 @@ public:
vector<Suggest> const & suggests,
storage::CountryInfoGetter const & infoGetter)
{
- return make_unique<v2::ProcessorV2>(index, categories, suggests, infoGetter);
+ return make_unique<Processor>(index, categories, suggests, infoGetter);
}
};
} // namespace search