Skip to content

Commit

Permalink
Removing used variables to fix tv-app build
Browse files Browse the repository at this point in the history
  • Loading branch information
sharadb-amazon committed Jun 27, 2024
1 parent 6af3186 commit 8859ade
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/MessageDef/AttributeStatusIBs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ AttributeStatusIBs::Builder & AttributeStatusIBs::Builder::EndOfAttributeStatuse
CHIP_ERROR AttributeStatusIBs::Parser::CheckSchemaValidity() const
{
CHIP_ERROR err = CHIP_NO_ERROR;
size_t NumAttributeStatus = 0;
//size_t NumAttributeStatus = 0;
TLV::TLVReader reader;

PRETTY_PRINT("AttributeStatusIBs =");
Expand All @@ -69,7 +69,7 @@ CHIP_ERROR AttributeStatusIBs::Parser::CheckSchemaValidity() const
PRETTY_PRINT_DECDEPTH();
}

++NumAttributeStatus;
//++NumAttributeStatus;
}

PRETTY_PRINT("],");
Expand Down
4 changes: 2 additions & 2 deletions src/app/MessageDef/EventPathIBs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace app {
CHIP_ERROR EventPathIBs::Parser::CheckSchemaValidity() const
{
CHIP_ERROR err = CHIP_NO_ERROR;
size_t NumPath = 0;
//size_t NumPath = 0;
TLV::TLVReader reader;

PRETTY_PRINT("EventPathIBs =");
Expand All @@ -55,7 +55,7 @@ CHIP_ERROR EventPathIBs::Parser::CheckSchemaValidity() const
PRETTY_PRINT_DECDEPTH();
}

++NumPath;
//++NumPath;
}

PRETTY_PRINT("],");
Expand Down

0 comments on commit 8859ade

Please sign in to comment.