From 1652658f952705389c4d935fead3ee86d0f53499 Mon Sep 17 00:00:00 2001 From: Vivien Nicolas Date: Thu, 21 Oct 2021 19:52:19 +0200 Subject: [PATCH] Remove const for Concrete*Path.h members (#10756) --- src/app/ConcreteAttributePath.h | 6 +++--- src/app/ConcreteCommandPath.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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