Skip to content

Commit fced207

Browse files
committed
[lldb/test] Fix StructuredDataTest::GetDescriptionEmpty warning (NFC)
Signed-off-by: Med Ismail Bennani <[email protected]>
1 parent ffecde1 commit fced207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/unittests/Utility/StructuredDataTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ TEST(StructuredDataTest, GetDescriptionEmpty) {
3838

3939
StreamString S;
4040
object_sp->GetDescription(S);
41-
EXPECT_EQ(0, S.GetSize());
41+
EXPECT_EQ(0u, S.GetSize());
4242
}
4343

4444
TEST(StructuredDataTest, GetDescriptionBasic) {

0 commit comments

Comments
 (0)