mdbx-test: resolve minor MSVC /W4 warnings.

This commit is contained in:
Леонид Юрьев (Leonid Yuriev)
2022-02-02 17:11:45 +03:00
parent ac02490c97
commit 92ab17a644
4 changed files with 30 additions and 31 deletions

View File

@@ -216,12 +216,12 @@ protected:
#endif /* SPECULUM_CURSORS */
void speculum_check_iterator(const char *where, const char *stage,
const testcase::SET::const_iterator &it,
const MDBX_val &key, const MDBX_val &data) const;
const MDBX_val &k, const MDBX_val &v) const;
void verbose(const char *where, const char *stage,
const testcase::SET::const_iterator &it) const;
void verbose(const char *where, const char *stage, const MDBX_val &key,
const MDBX_val &data, int err = MDBX_SUCCESS) const;
void verbose(const char *where, const char *stage, const MDBX_val &k,
const MDBX_val &v, int err = MDBX_SUCCESS) const;
bool is_same(const Item &a, const Item &b) const;
bool is_same(const SET::const_iterator &it, const MDBX_val &k,