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-06-19 19:41:18 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:06 +0300
commit41e40114b16d8844c8e1a93ce83c92ea1b8c8948 (patch)
treed7242f05b1a87773ec1f4028c74fa09cbfa1d3c4 /indexer/feature_processor.hpp
parent6ee951fe27bfbe8b71e2144fb90da397f8be24d9 (diff)
Code style - removed dummy binds.
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 04590d6b7c..758e3b1cf6 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(bind<void>(ref(toDo), _1, _2));
+ featureSource.ForEachOffset(ref(toDo));
}
template <class ToDo>