mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#29125 Windows Server X64: so many compiler warnings
- Remove bothersome warning messages. This change focuses on the warnings that are covered by the ignore file: support-files/compiler_warnings.supp. - Strings are guaranteed to be max uint in length
This commit is contained in:
@ -54,7 +54,7 @@ static Geometry::Class_info **ci_collection_end=
|
||||
|
||||
Geometry::Class_info::Class_info(const char *name, int type_id,
|
||||
void(*create_func)(void *)):
|
||||
m_name(name, strlen(name)), m_type_id(type_id), m_create_func(create_func)
|
||||
m_name(name, (uint) strlen(name)), m_type_id(type_id), m_create_func(create_func)
|
||||
{
|
||||
ci_collection[type_id]= this;
|
||||
}
|
||||
|
Reference in New Issue
Block a user