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 'indexer/feature_processor.hpp')
-rw-r--r--indexer/feature_processor.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/feature_processor.hpp b/indexer/feature_processor.hpp
index 7c36b1ba30..575223f3f4 100644
--- a/indexer/feature_processor.hpp
+++ b/indexer/feature_processor.hpp
@@ -10,9 +10,9 @@
namespace feature
{
template <class ToDo>
- void ForEachFromDat(string const & fName, ToDo & toDo)
+ void ForEachFromDat(ModelReaderPtr const & file, ToDo & toDo)
{
- FilesContainerR container(fName);
+ FilesContainerR container(file);
FeaturesVector featureSource(container);
featureSource.ForEachOffset(bind<void>(ref(toDo), _1, _2));
}