mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
lmdb: Remove meaningless const qualifier on function type
This commit is contained in:
parent
ff94771b47
commit
2e58eb5cdb
1 changed files with 2 additions and 2 deletions
|
@ -15,8 +15,8 @@ namespace lmdb
|
|||
{
|
||||
char const* const name;
|
||||
const unsigned flags;
|
||||
MDB_cmp_func const* const key_cmp;
|
||||
MDB_cmp_func const* const value_cmp;
|
||||
MDB_cmp_func* const key_cmp;
|
||||
MDB_cmp_func* const value_cmp;
|
||||
|
||||
//! \pre `name != nullptr` \return Open table.
|
||||
expect<MDB_dbi> open(MDB_txn& write_txn) const noexcept;
|
||||
|
|
Loading…
Reference in a new issue