cct is a member of the ObjBencher parent that we are trying to
initialize; need to pass in cct_ here.
Broken in
5dd0a83f917cb73a9985c94b9b6c2309c66d0ce3.
Fixes: #6256
Signed-off-by: Sage Weil <sage@inktank.com>
public:
RadosBencher(CephContext *cct_, librados::Rados& _r, librados::IoCtx& _i)
- : ObjBencher(cct), completions(NULL), rados(_r), io_ctx(_i), iterator_valid(false) {}
+ : ObjBencher(cct_), completions(NULL), rados(_r), io_ctx(_i), iterator_valid(false) {}
~RadosBencher() { }
};