Skip to content

Commit eabbf55

Browse files
committed
Address final set of review comments from Andrei
1 parent 4c4a341 commit eabbf55

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/all-clusters-app/all-clusters-common/include/water-heater-mode.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ class ExampleWaterHeaterModeDelegate : public ModeBase::Delegate
4444

4545
const detail::Structs::ModeOptionStruct::Type kModeOptions[3] = {
4646
detail::Structs::ModeOptionStruct::Type{
47-
.label = "Off"_span, .mode = ModeOff, .modeTags = DataModel::List<const ModeTagStructType>(modeTagsOff) },
47+
.label = "Off"_span, .mode = kModeOff, .modeTags = DataModel::List<const ModeTagStructType>(modeTagsOff) },
4848
detail::Structs::ModeOptionStruct::Type{
49-
.label = "Manual"_span, .mode = ModeManual, .modeTags = DataModel::List<const ModeTagStructType>(modeTagsManual) },
49+
.label = "Manual"_span, .mode = kModeManual, .modeTags = DataModel::List<const ModeTagStructType>(modeTagsManual) },
5050
detail::Structs::ModeOptionStruct::Type{
51-
.label = "Timed"_span, .mode = ModeTimed, .modeTags = DataModel::List<const ModeTagStructType>(modeTagsTimed) }
51+
.label = "Timed"_span, .mode = kModeTimed, .modeTags = DataModel::List<const ModeTagStructType>(modeTagsTimed) }
5252
};
5353

5454
CHIP_ERROR Init() override;

0 commit comments

Comments
 (0)