mirror of
https://github.com/monero-project/monero.git
synced 2025-08-23 06:15:13 -04:00
lmdb: fix size_t size issues on 32 bit
This commit is contained in:
parent
e4b049da05
commit
5e1a3e48ba
3 changed files with 5 additions and 5 deletions
|
@ -43,7 +43,7 @@ namespace lmdb
|
|||
\throw std::system_error if unexpected LMDB error.
|
||||
\return 0 if `cur == nullptr`, otherwise count of values at current key.
|
||||
*/
|
||||
std::size_t count(MDB_cursor* cur);
|
||||
mdb_size_t count(MDB_cursor* cur);
|
||||
|
||||
/*!
|
||||
Calls `mdb_cursor_get` and does some error checking.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue