all: use unsigned types for more variables that represent length
resolve build warnings on multiple platforms/toolchains
This commit is contained in:
parent
125c638c11
commit
0b6f95294e
5 changed files with 17 additions and 16 deletions
|
|
@ -189,7 +189,7 @@ TEST(Schema, ReadSimple) {
|
|||
|
||||
struct CodeGeneratorRequest req;
|
||||
read_CodeGeneratorRequest(&req, root);
|
||||
for (size_t i = 0; i < req.nodes.p.len; i++) {
|
||||
for (int i = 0; i < req.nodes.p.len; i++) {
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue