1
0
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:
joerg@mysql.com
2004-10-08 15:00:36 +02:00
parent b124ce5f64
commit b0154e21dc

View File

@ -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; }
};