mirror of
https://github.com/isar/libmdbx.git
synced 2024-10-30 11:29:19 +08:00
mdbx++: fix copy&paste typo inside mdbx::cursor::find_multivalue()
.
This commit is contained in:
parent
43070c7b26
commit
d13534967a
2
mdbx.h++
2
mdbx.h++
@ -5667,7 +5667,7 @@ inline cursor::move_result cursor::move(move_operation operation,
|
|||||||
inline cursor::move_result cursor::find_multivalue(const slice &key,
|
inline cursor::move_result cursor::find_multivalue(const slice &key,
|
||||||
const slice &value,
|
const slice &value,
|
||||||
bool throw_notfound) {
|
bool throw_notfound) {
|
||||||
return move(key_exact, key, value, throw_notfound);
|
return move(multi_find_pair, key, value, throw_notfound);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline cursor::move_result cursor::lower_bound_multivalue(const slice &key,
|
inline cursor::move_result cursor::lower_bound_multivalue(const slice &key,
|
||||||
|
Loading…
Reference in New Issue
Block a user