diff --git a/examples/chef/common/chef-operational-state-delegate-impl.h b/examples/chef/common/chef-operational-state-delegate-impl.h index 884a6f28c2828c..dcac2049d9abde 100644 --- a/examples/chef/common/chef-operational-state-delegate-impl.h +++ b/examples/chef/common/chef-operational-state-delegate-impl.h @@ -110,6 +110,7 @@ class OperationalStateDelegate : public GenericOperationalStateDelegateImpl GenericOperationalState(to_underlying(OperationalStateEnum::kPaused)), GenericOperationalState(to_underlying(OperationalStateEnum::kError)), }; + const CharSpan opPhaseList[3] = { "pre-soak"_span, "rinse"_span, "spin"_span }; public: const uint32_t kExampleCountDown = 30; @@ -117,6 +118,7 @@ class OperationalStateDelegate : public GenericOperationalStateDelegateImpl OperationalStateDelegate() { GenericOperationalStateDelegateImpl::mOperationalStateList = Span(opStateList); + GenericOperationalStateDelegateImpl::mOperationalPhaseList = Span(opPhaseList); } /**