Commit b0154e21 authored by joerg@mysql.com's avatar joerg@mysql.com

Solve compile problem - use system types like 'size_t'.

parent b124ce5f
......@@ -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; }
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment