Skip to content

Commit

Permalink
Fixed an unsigned/signed mismatch warning with GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
ixe013 committed Aug 17, 2014
1 parent 7fb8b9e commit fbd9542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.cpp
Expand Up @@ -1065,7 +1065,7 @@ UNITTEST ( SetTimeFormat )

pFormatter->SetShowTimeOfDay( true );

for(int i=0; i < (sizeof(timeFormats)/sizeof(*timeFormats)); ++i)
for(size_t i=0; i < (sizeof(timeFormats)/sizeof(*timeFormats)); ++i)
{
pFormatter->SetTimeOfDayFormat(timeFormats[i].format);

Expand Down

0 comments on commit fbd9542

Please sign in to comment.