mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-31 11:17:35 +02:00
Fix warnings
This commit is contained in:
@ -100,7 +100,7 @@ struct S {};
|
|||||||
|
|
||||||
int test_variadic(FMT_GEN(10, GET_TYPE), const fmt::ArgList &args) { \
|
int test_variadic(FMT_GEN(10, GET_TYPE), const fmt::ArgList &args) { \
|
||||||
int result = 0; \
|
int result = 0; \
|
||||||
for (std::size_t i = 0; args[i].type; ++i) \
|
for (unsigned i = 0; args[i].type; ++i) \
|
||||||
result += args[i].int_value; \
|
result += args[i].int_value; \
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user