forked from organicmaps/organicmaps
[indexer] Fix for review
This commit is contained in:
parent
89665ff81a
commit
758d1ab6c1
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue