Fix for:
[src/kv/MemDB.h:59]: (warning) Member variable 'MemDB::m_total_bytes'
is not initialized in the constructor.
[src/kv/MemDB.h:59]: (warning) Member variable 'MemDB::m_allocated_bytes'
is not initialized in the constructor.
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
public:
MemDB(CephContext *c, const string &path, void *p) :
- m_using_btree(false), m_cct(c), m_priv(p), m_db_path(path), iterator_seq_no(1)
+ m_total_bytes(0), m_allocated_bytes(0), m_using_btree(false),
+ m_cct(c), m_priv(p), m_db_path(path), iterator_seq_no(1)
{
//Nothing as of now
}