Skip to content

Commit 33a0663

Browse files
restyled-commitsratgr
authored andcommitted
Restyled by clang-format
1 parent 9671d96 commit 33a0663

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/app/InteractionModelEngine.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,7 @@ bool MayHaveAccessibleEventPath(DataModel::Provider * aProvider, const EventPath
130130
class AutoReleaseSubscriptionInfoIterator
131131
{
132132
public:
133-
AutoReleaseSubscriptionInfoIterator(SubscriptionResumptionStorage::SubscriptionInfoIterator * iterator) :
134-
mIterator(iterator) {};
133+
AutoReleaseSubscriptionInfoIterator(SubscriptionResumptionStorage::SubscriptionInfoIterator * iterator) : mIterator(iterator){};
135134
~AutoReleaseSubscriptionInfoIterator() { mIterator->Release(); }
136135

137136
SubscriptionResumptionStorage::SubscriptionInfoIterator * operator->() const { return mIterator; }

src/app/clusters/microwave-oven-control-server/microwave-oven-control-server.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ namespace MicrowaveOvenControl {
4646
Instance::Instance(Delegate * aDelegate, EndpointId aEndpointId, ClusterId aClusterId,
4747
BitMask<MicrowaveOvenControl::Feature> aFeature, Clusters::OperationalState::Instance & aOpStateInstance,
4848
Clusters::ModeBase::Instance & aMicrowaveOvenModeInstance) :
49-
CommandHandlerInterface(MakeOptional(aEndpointId), aClusterId), AttributeAccessInterface(MakeOptional(aEndpointId), aClusterId),
50-
mDelegate(aDelegate), mEndpointId(aEndpointId), mClusterId(aClusterId), mFeature(aFeature), mOpStateInstance(aOpStateInstance),
49+
CommandHandlerInterface(MakeOptional(aEndpointId), aClusterId),
50+
AttributeAccessInterface(MakeOptional(aEndpointId), aClusterId), mDelegate(aDelegate), mEndpointId(aEndpointId),
51+
mClusterId(aClusterId), mFeature(aFeature), mOpStateInstance(aOpStateInstance),
5152
mMicrowaveOvenModeInstance(aMicrowaveOvenModeInstance)
5253
{
5354
mDelegate->SetInstance(this);

0 commit comments

Comments
 (0)