Fix compiler warnings

- Removed conversion from size_t to uint32
- Removed not used variables and silence warnings from
  mronga/vendor/gronga/lib/ii.c
This commit is contained in:
Monty 2025-09-26 16:51:49 +03:00
commit ee65b7bd1f
2 changed files with 11 additions and 11 deletions

View file

@ -55,7 +55,7 @@ public:
}
uint32 elements() const
{
return length() / sizeof(MY_XPATH_FLT);
return length() / (uint32) sizeof(MY_XPATH_FLT);
}
};