Skip to content

Commit

Permalink
Remove const for Concrete*Path.h members (#10756)
Browse files Browse the repository at this point in the history
  • Loading branch information
vivien-apple authored and pull[bot] committed Jan 13, 2022
1 parent 0153bcb commit 1652658
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/app/ConcreteAttributePath.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions src/app/ConcreteCommandPath.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 1652658

Please sign in to comment.