Skip to content

Commit 610c8d2

Browse files
committedNov 24, 2018
generic_interface_test.cpp: Fix some warnings on macOS.
1 parent 1c9457d commit 610c8d2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎test/generic_interface_test.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ static void assert_not_ready(
176176
}
177177
}
178178

179+
__attribute__((__unused__))
179180
static void assert_incorrect_driver(
180181
const libusbp::device & device,
181182
uint8_t interface_number,
@@ -248,7 +249,7 @@ TEST_CASE("Test Device A generic interface ", "[tdagi]")
248249
REQUIRE(id.substr(0, 13) == "/sys/devices/");
249250
#else
250251
REQUIRE(id.size() > 1);
251-
for(int i = 0; i < id.size(); i++)
252+
for(size_t i = 0; i < id.size(); i++)
252253
{
253254
char c = id[i];
254255
if (!((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f')))
@@ -269,7 +270,7 @@ TEST_CASE("Test Device A generic interface ", "[tdagi]")
269270
REQUIRE(filename.substr(0, 13) == "/dev/bus/usb/");
270271
#else
271272
REQUIRE(filename.size() > 0);
272-
for(int i = 0; i < filename.size(); i++)
273+
for(size_t i = 0; i < filename.size(); i++)
273274
{
274275
char c = filename[i];
275276
if (!((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f')))

0 commit comments

Comments
 (0)
Please sign in to comment.