mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Solve compile problem - use system types like 'size_t'.
This commit is contained in:
@ -702,7 +702,7 @@ struct Item_change_record: public ilink
|
||||
Item **place;
|
||||
Item *old_value;
|
||||
/* Placement new was hidden by `new' in ilink (TODO: check): */
|
||||
static void *operator new(unsigned int size, void *mem) { return mem; }
|
||||
static void *operator new(size_t size, void *mem) { return mem; }
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user