Skip to content

Commit d6e6db3

Browse files
restyled-commitshicklin
authored andcommitted
Restyled by clang-format
1 parent d18bfcd commit d6e6db3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/all-clusters-app/all-clusters-common/src/rvc-modes.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ void emberAfRvcRunModeClusterInitCallback(chip::EndpointId endpointId)
112112
VerifyOrDie(endpointId == 1); // this cluster is only enabled for endpoint 1.
113113
VerifyOrDie(gRvcRunModeDelegate == nullptr && gRvcRunModeInstance == nullptr);
114114
gRvcRunModeDelegate = new RvcRunMode::RvcRunModeDelegate;
115-
gRvcRunModeInstance = new ModeBase::Instance(gRvcRunModeDelegate, 0x1, RvcRunMode::Id, to_underlying(RvcRunMode::Feature::kNoFeatures));
115+
gRvcRunModeInstance =
116+
new ModeBase::Instance(gRvcRunModeDelegate, 0x1, RvcRunMode::Id, to_underlying(RvcRunMode::Feature::kNoFeatures));
116117
gRvcRunModeInstance->Init();
117118
}
118119

@@ -201,6 +202,7 @@ void emberAfRvcCleanModeClusterInitCallback(chip::EndpointId endpointId)
201202
VerifyOrDie(endpointId == 1); // this cluster is only enabled for endpoint 1.
202203
VerifyOrDie(gRvcCleanModeDelegate == nullptr && gRvcCleanModeInstance == nullptr);
203204
gRvcCleanModeDelegate = new RvcCleanMode::RvcCleanModeDelegate;
204-
gRvcCleanModeInstance = new ModeBase::Instance(gRvcCleanModeDelegate, 0x1, RvcCleanMode::Id, to_underlying(RvcRunMode::Feature::kNoFeatures));
205+
gRvcCleanModeInstance =
206+
new ModeBase::Instance(gRvcCleanModeDelegate, 0x1, RvcCleanMode::Id, to_underlying(RvcRunMode::Feature::kNoFeatures));
205207
gRvcCleanModeInstance->Init();
206208
}

0 commit comments

Comments
 (0)