diff --git a/src/app/ConcreteAttributePath.h b/src/app/ConcreteAttributePath.h index db5e0a07f3851d..b3b44a8a2f359c 100644 --- a/src/app/ConcreteAttributePath.h +++ b/src/app/ConcreteAttributePath.h @@ -37,9 +37,9 @@ struct ConcreteAttributePath return mEndpointId == other.mEndpointId && mClusterId == other.mClusterId && mAttributeId == other.mAttributeId; } - const EndpointId mEndpointId = 0; - const ClusterId mClusterId = 0; - const AttributeId mAttributeId = 0; + EndpointId mEndpointId = 0; + ClusterId mClusterId = 0; + AttributeId mAttributeId = 0; }; } // namespace app } // namespace chip diff --git a/src/app/ConcreteCommandPath.h b/src/app/ConcreteCommandPath.h index 12b5add8307c04..7287e1289ddbb0 100644 --- a/src/app/ConcreteCommandPath.h +++ b/src/app/ConcreteCommandPath.h @@ -38,9 +38,9 @@ struct ConcreteCommandPath return mEndpointId == other.mEndpointId && mClusterId == other.mClusterId && mCommandId == other.mCommandId; } - const EndpointId mEndpointId = 0; - const ClusterId mClusterId = 0; - const CommandId mCommandId = 0; + EndpointId mEndpointId = 0; + ClusterId mClusterId = 0; + CommandId mCommandId = 0; }; } // namespace app } // namespace chip