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>2015-03-21 12:55:05 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:57:09 +0300
commit792311a255f844b940fee3ade42fda4195cbaa0f (patch)
tree58314904937f4b7fdf2ac2e4e675d84e98790203 /indexer/feature_processor.hpp
parentb7e5bc5301e1563664028677d36711a4a0872fee (diff)
Feature index refactoring.
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 758e3b1cf6..d524a94940 100644
--- a/indexer/feature_processor.hpp
+++ b/indexer/feature_processor.hpp
@@ -22,7 +22,7 @@ namespace feature
header.Load(container.GetReader(HEADER_FILE_TAG));
FeaturesVector featureSource(container, header);
- featureSource.ForEachOffset(ref(toDo));
+ featureSource.ForEach(ref(toDo));
}
template <class ToDo>