Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c4184f7

Browse files
committedFeb 22, 2024·
Note lint error on door-lock and bypass. not great, however this is not worse than before
1 parent 2ecff6e commit c4184f7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎src/app/clusters/door-lock-server/door-lock-server.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -2590,8 +2590,15 @@ bool DoorLockServer::weekDayIndexValid(chip::EndpointId endpointId, uint8_t week
25902590

25912591
DlStatus DoorLockServer::clearWeekDaySchedule(chip::EndpointId endpointId, uint16_t userIndex, uint8_t weekDayIndex)
25922592
{
2593+
// TODO: DaysMaskMap 0 is not an actual ENUM value. However code is too coupled to easily
2594+
// convert to BitFlags<DaysMaskMap> as part of CLANG-upgrade.
2595+
// See https://github.com/project-chip/connectedhomeip/issues/32249
2596+
//
2597+
// NOLINTBEGIN(*.EnumCastOutOfRange)
25932598
auto status = emberAfPluginDoorLockSetSchedule(endpointId, weekDayIndex, userIndex, DlScheduleStatus::kAvailable,
25942599
DaysMaskMap(0), 0, 0, 0, 0);
2600+
// NOLINTEND(*.EnumCastOutOfRange)
2601+
25952602
if (DlStatus::kSuccess != status && DlStatus::kNotFound != status)
25962603
{
25972604
ChipLogError(Zcl,

0 commit comments

Comments
 (0)
Please sign in to comment.