Skip to content

Commit adc5fff

Browse files
committed
Fix cmake clang warnings
1 parent df4be1e commit adc5fff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api/test/trace/propagation/detail/string_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

1010
TEST(StringTest, SplitString)
1111
{
12-
//TODO(psx95): Add tests
12+
// TODO(psx95): Add tests
1313
}

ext/test/w3c_tracecontext_test/main.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class TextMapCarrierTest : public context::propagation::TextMapCarrier
7171
{
7272
return false;
7373
}
74-
for (int i = 0; i < str1.length(); i++)
74+
for (size_t i = 0; i < str1.length(); i++)
7575
{
7676
if (tolower(str1[i]) != tolower(str2[i]))
7777
{

0 commit comments

Comments
 (0)