diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-24 22:35:06 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-31 11:12:21 +0000 |
commit | 5e1a3e48ba426eace417890727382d4a0196ab0e (patch) | |
tree | 69b15b5b0971c2ffed357a066ba3bceb28c8d3a1 /src/lmdb/value_stream.h | |
parent | Merge pull request #5286 (diff) | |
download | monero-5e1a3e48ba426eace417890727382d4a0196ab0e.tar.xz |
lmdb: fix size_t size issues on 32 bit
Diffstat (limited to '')
-rw-r--r-- | src/lmdb/value_stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lmdb/value_stream.h b/src/lmdb/value_stream.h index c9977221f..01090aa67 100644 --- a/src/lmdb/value_stream.h +++ b/src/lmdb/value_stream.h @@ -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. |