Skip to content

Commit 8859ade

Browse files
Removing used variables to fix tv-app build
1 parent 6af3186 commit 8859ade

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/app/MessageDef/AttributeStatusIBs.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ AttributeStatusIBs::Builder & AttributeStatusIBs::Builder::EndOfAttributeStatuse
4848
CHIP_ERROR AttributeStatusIBs::Parser::CheckSchemaValidity() const
4949
{
5050
CHIP_ERROR err = CHIP_NO_ERROR;
51-
size_t NumAttributeStatus = 0;
51+
//size_t NumAttributeStatus = 0;
5252
TLV::TLVReader reader;
5353

5454
PRETTY_PRINT("AttributeStatusIBs =");
@@ -69,7 +69,7 @@ CHIP_ERROR AttributeStatusIBs::Parser::CheckSchemaValidity() const
6969
PRETTY_PRINT_DECDEPTH();
7070
}
7171

72-
++NumAttributeStatus;
72+
//++NumAttributeStatus;
7373
}
7474

7575
PRETTY_PRINT("],");

src/app/MessageDef/EventPathIBs.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace app {
3232
CHIP_ERROR EventPathIBs::Parser::CheckSchemaValidity() const
3333
{
3434
CHIP_ERROR err = CHIP_NO_ERROR;
35-
size_t NumPath = 0;
35+
//size_t NumPath = 0;
3636
TLV::TLVReader reader;
3737

3838
PRETTY_PRINT("EventPathIBs =");
@@ -55,7 +55,7 @@ CHIP_ERROR EventPathIBs::Parser::CheckSchemaValidity() const
5555
PRETTY_PRINT_DECDEPTH();
5656
}
5757

58-
++NumPath;
58+
//++NumPath;
5959
}
6060

6161
PRETTY_PRINT("],");

0 commit comments

Comments
 (0)