From: Dmitrii Sharshakov Date: Thu, 1 Jan 2026 12:33:41 +0000 (+0100) Subject: src/mgr: make enum statically castable X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=856e550b37a0899e2fdda6b1f027093b6e205889;p=ceph.git src/mgr: make enum statically castable Fix the following compiler error: in-class initializer for static data member is not a constant expression Co-authored-by: Ilya Dryomov Signed-off-by: Dmitrii Sharshakov --- diff --git a/src/mgr/MetricTypes.h b/src/mgr/MetricTypes.h index 0f8ae16990f..37cafa2b92a 100644 --- a/src/mgr/MetricTypes.h +++ b/src/mgr/MetricTypes.h @@ -193,7 +193,7 @@ WRITE_CLASS_ENCODER(MetricReportMessage); // variant for sending configure message to mgr clients -enum MetricConfigType { +enum MetricConfigType : uint32_t { METRIC_CONFIG_TYPE_OSD = 0, METRIC_CONFIG_TYPE_MDS = 1, };