From: Casey Bodley Date: Tue, 28 Nov 2023 13:51:41 +0000 (-0500) Subject: rgw/acl: remove virtual destructor of ACLGranteeType X-Git-Tag: v19.0.0~9^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F54526%2Fhead;p=ceph.git rgw/acl: remove virtual destructor of ACLGranteeType Signed-off-by: Casey Bodley --- diff --git a/src/rgw/rgw_acl_types.h b/src/rgw/rgw_acl_types.h index 11637dd360de..b9866e9b289a 100644 --- a/src/rgw/rgw_acl_types.h +++ b/src/rgw/rgw_acl_types.h @@ -182,7 +182,6 @@ protected: __u32 type; public: ACLGranteeType(ACLGranteeTypeEnum t = ACL_TYPE_UNKNOWN) : type(t) {} - virtual ~ACLGranteeType() {} ACLGranteeTypeEnum get_type() const { return (ACLGranteeTypeEnum)type; } operator ACLGranteeTypeEnum() const { return get_type(); }