File tree 2 files changed +3
-3
lines changed
src/app/codegen-interaction-model/tests
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -868,7 +868,7 @@ def main() -> int:
868
868
""" ))
869
869
if options .do_clean :
870
870
shell .run_cmd ("rm -rf out" )
871
- shell .run_cmd ("gn gen out" )
871
+ shell .run_cmd ("gn gen --export-compile-commands out" )
872
872
shell .run_cmd ("ninja -C out" )
873
873
874
874
#
Original file line number Diff line number Diff line change @@ -403,11 +403,11 @@ class ListAttributeAcessInterface : public AttributeAccessInterface
403
403
return CHIP_NO_ERROR;
404
404
}
405
405
406
- return encoder.EncodeList ([this ](const auto & encoder ) {
406
+ return encoder.EncodeList ([this ](const auto & listEncoder ) {
407
407
for (unsigned i = 0 ; i < mCount ; i++)
408
408
{
409
409
mData .a = static_cast <uint8_t >(i % 0xFF );
410
- ReturnErrorOnFailure (encoder .Encode (mData ));
410
+ ReturnErrorOnFailure (listEncoder .Encode (mData ));
411
411
}
412
412
return CHIP_NO_ERROR;
413
413
});
You can’t perform that action at this time.
0 commit comments