File tree 1 file changed +3
-3
lines changed
src/app/tests/suites/commands/interaction_model
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -407,7 +407,7 @@ class InteractionModelWriter
407
407
mTimedInteractionTimeoutMs , mSuppressResponse .ValueOr (false ));
408
408
VerifyOrReturnError (mWriteClient != nullptr , CHIP_ERROR_NO_MEMORY);
409
409
410
- for (uint8_t i = 0 ; i < pathsConfig.count ; i++)
410
+ for (size_t i = 0 ; i < pathsConfig.count ; i++)
411
411
{
412
412
auto & path = pathsConfig.attributePathParams [i];
413
413
auto & dataVersion = pathsConfig.dataVersionFilter [i].mDataVersion ;
@@ -592,8 +592,8 @@ class InteractionModel : public InteractionModelReports,
592
592
public chip::app::CommandSender::Callback
593
593
{
594
594
public:
595
- InteractionModel () : InteractionModelReports(this ), InteractionModelCommands(this ), InteractionModelWriter(this ){};
596
- virtual ~InteractionModel (){};
595
+ InteractionModel () : InteractionModelReports(this ), InteractionModelCommands(this ), InteractionModelWriter(this ) {};
596
+ virtual ~InteractionModel () {};
597
597
598
598
virtual void OnResponse (const chip::app::StatusIB & status, chip::TLV::TLVReader * data) = 0;
599
599
virtual CHIP_ERROR ContinueOnChipMainThread (CHIP_ERROR err) = 0;
You can’t perform that action at this time.
0 commit comments