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:
authorAnatoly Serdtcev <serdtcev@maps.me>2019-01-15 20:10:21 +0300
committerSergey Yershov <syershov@maps.me>2019-01-31 14:04:45 +0300
commit758d1ab6c1558e6b89cb1b0cdf0b896b08eca971 (patch)
tree098ca5873aada6069c44ea6eea7a55b1ac8d9418 /indexer
parent89665ff81af43ce7e4a5433ebfab1d53df2f8e23 (diff)
[indexer] Fix for review
Diffstat (limited to 'indexer')
-rw-r--r--indexer/interval_index.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/interval_index.hpp b/indexer/interval_index.hpp
index d219e6aeaf..5ed7f2b673 100644
--- a/indexer/interval_index.hpp
+++ b/indexer/interval_index.hpp
@@ -171,13 +171,13 @@ private:
}
template <typename F, typename = decltype(std::declval<F>()(uint64_t{0}, uint64_t{0}))>
- static void Invoke(F const & f, uint64_t key, uint64_t storedId, int /* best candidate (overload) */)
+ static void Invoke(F const & f, uint64_t key, Value storedId, int /* best candidate (overload) */)
{
f(key, storedId);
}
template <typename F>
- static void Invoke(F const & f, uint64_t key, uint64_t storedId, ... /* default candidate (overload )*/)
+ static void Invoke(F const & f, uint64_t key, Value storedId, ... /* default candidate (overload )*/)
{
f(storedId);
}