mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
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:
parent
f0bef17b82
commit
ee65b7bd1f
2 changed files with 11 additions and 11 deletions
|
|
@ -55,7 +55,7 @@ public:
|
|||
}
|
||||
uint32 elements() const
|
||||
{
|
||||
return length() / sizeof(MY_XPATH_FLT);
|
||||
return length() / (uint32) sizeof(MY_XPATH_FLT);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue