lmdb: Remove meaningless const qualifier on function type

This commit is contained in:
Nathan Dorfman 2019-11-04 02:28:45 -07:00
parent ff94771b47
commit 2e58eb5cdb
1 changed files with 2 additions and 2 deletions

View File

@ -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;