~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.cc

  • Committer: Monty Taylor
  • Date: 2009-12-27 00:49:03 UTC
  • mto: This revision was merged to the branch mainline in revision 1255.
  • Revision ID: mordred@inaugust.com-20091227004903-maw7ktxu6i6hye9b
Moved mem_root functions into drizzled::memory:: namespace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
367
367
 
368
368
void *Field::operator new(size_t size)
369
369
{
370
 
  return sql_alloc(size);
 
370
  return memory::sql_alloc(size);
371
371
}
372
372
 
373
373
void *Field::operator new(size_t size, memory::Root *mem_root)