Skip to content
This repository was archived by the owner on Aug 8, 2023. It is now read-only.

Commit d4271d9

Browse files
authored
[core] Compare unsigned int to unsigned int to pass tidy check (#5986)
1 parent ddf0d25 commit d4271d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/api/annotations.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ TEST(Annotations, QueryRenderedFeatures) {
227227
EXPECT_EQ(*features[0].id, 0);
228228

229229
auto features2 = test.map.queryRenderedFeatures(test.map.pixelForLatLng({ 50, 0 }));
230-
EXPECT_EQ(features2.size(), 1);
230+
EXPECT_EQ(features2.size(), 1u);
231231
EXPECT_TRUE(!!features2[0].id);
232232
EXPECT_EQ(*features2[0].id, 1);
233233
}

0 commit comments

Comments
 (0)