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:
authorvng <viktor.govako@gmail.com>2011-01-05 03:33:57 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:09:17 +0300
commit29fad748ac0872c398802e3d9e4ae467f2093713 (patch)
tree9da666da3511503d44bb1e1b200bd4db540a68c6 /indexer/feature_processor.hpp
parente44cfb91ab0fdc510912b18880dd9d04533594b5 (diff)
Better geometry sorting.
Divide geometry in separate files in files-container.
Diffstat (limited to 'indexer/feature_processor.hpp')
-rw-r--r--indexer/feature_processor.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/feature_processor.hpp b/indexer/feature_processor.hpp
index 1991a5a673..e9e09fe00d 100644
--- a/indexer/feature_processor.hpp
+++ b/indexer/feature_processor.hpp
@@ -13,7 +13,7 @@ namespace feature
void ForEachFromDat(string const & fName, ToDo & toDo)
{
FilesContainerR container(fName);
- FeaturesVector<FileReader> featureSource(container);
+ FeaturesVector featureSource(container);
featureSource.ForEachOffset(bind<void>(ref(toDo), _1, _2));
}