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/scale_index.hpp
parent6ee951fe27bfbe8b71e2144fb90da397f8be24d9 (diff)
Code style - removed dummy binds.
Diffstat (limited to 'indexer/scale_index.hpp')
-rw-r--r--indexer/scale_index.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/scale_index.hpp b/indexer/scale_index.hpp
index 5f17a10685..807662f0d8 100644
--- a/indexer/scale_index.hpp
+++ b/indexer/scale_index.hpp
@@ -59,7 +59,7 @@ public:
size_t const scaleBucket = BucketByScale(scale);
if (scaleBucket < m_IndexForScale.size())
{
- IntervalIndexIFace::FunctionT f1(bind<void>(ref(f), _1));
+ IntervalIndexIFace::FunctionT f1(ref(f));
for (size_t i = 0; i <= scaleBucket; ++i)
m_IndexForScale[i]->DoForEach(f1, beg, end);
}