Skip to content

Commit beba45c

Browse files
restyled-commitserwinpan1
authored andcommitted
Restyled by clang-format
1 parent daba63f commit beba45c

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

examples/chef/common/clusters/refrigerator-and-temperature-controlled-cabinet-mode/tcc-mode.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ CHIP_ERROR TccModeDelegate::GetModeTagsByIndex(uint8_t modeIndex, List<ModeTagSt
7979

8080
void RefrigeratorAndTemperatureControlledCabinetMode::Shutdown()
8181
{
82-
gTccModeInstance.reset();
83-
gTccModeDelegate.reset();
82+
gTccModeInstance.reset();
83+
gTccModeDelegate.reset();
8484
}
8585

8686
chip::Protocols::InteractionModel::Status
@@ -141,7 +141,8 @@ void emberAfRefrigeratorAndTemperatureControlledCabinetModeClusterInitCallback(c
141141
VerifyOrDie(endpointId == 1); // this cluster is only enabled for endpoint 1.
142142
VerifyOrDie(gTccModeDelegate == nullptr && gTccModeInstance == nullptr);
143143
gTccModeDelegate = std::make_unique<RefrigeratorAndTemperatureControlledCabinetMode::TccModeDelegate>();
144-
gTccModeInstance = std::make_unique<ModeBase::Instance>(gTccModeDelegate.get(), 0x1, RefrigeratorAndTemperatureControlledCabinetMode::Id, 0);
144+
gTccModeInstance =
145+
std::make_unique<ModeBase::Instance>(gTccModeDelegate.get(), 0x1, RefrigeratorAndTemperatureControlledCabinetMode::Id, 0);
145146
gTccModeInstance->Init();
146147
}
147148

examples/chef/common/stubs.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,8 @@ void ApplicationInit()
321321
ChipLogProgress(NotSpecified, "Chef Application Init !!!")
322322

323323
#ifdef MATTER_DM_PLUGIN_REFRIGERATOR_ALARM_SERVER
324-
// set Parent Endpoint and Composition Type for an Endpoint
325-
EndpointId kRefEndpointId = 1;
324+
// set Parent Endpoint and Composition Type for an Endpoint
325+
EndpointId kRefEndpointId = 1;
326326
EndpointId kColdCabinetEndpointId = 2;
327327
EndpointId kFreezeCabinetEndpointId = 3;
328328
SetTreeCompositionForEndpoint(kRefEndpointId);

0 commit comments

Comments
 (0)