Skip to content

Commit

Permalink
RGW - Sal - remove unused default constructors
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Gryniewicz <[email protected]>
  • Loading branch information
dang committed Sep 1, 2022
1 parent 183a056 commit 7f63f1e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/rgw/rgw_sal_rados.h
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,6 @@ class RadosUser : public StoreUser {
RadosUser(RadosStore *_st, const RGWUserInfo& _i) : StoreUser(_i), store(_st) { }
RadosUser(RadosStore *_st) : store(_st) { }
RadosUser(RadosUser& _o) = default;
RadosUser() {}

virtual std::unique_ptr<User> clone() override {
return std::unique_ptr<User>(new RadosUser(*this));
Expand Down Expand Up @@ -357,8 +356,6 @@ class RadosObject : public StoreObject {
virtual int delete_obj(const DoutPrefixProvider* dpp, optional_yield y) override;
};

RadosObject() = default;

RadosObject(RadosStore *_st, const rgw_obj_key& _k)
: StoreObject(_k),
store(_st),
Expand Down

0 comments on commit 7f63f1e

Please sign in to comment.