~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.cc

  • Committer: Mark Atwood
  • Date: 2011-06-24 02:13:02 UTC
  • mfrom: (2318.6.56 rf)
  • Revision ID: me@mark.atwood.name-20110624021302-y9oiksid220xan9s
mergeĀ lp:~olafvdspek/drizzle/refactor14

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
 
93
93
void *String::operator new(size_t size, memory::Root *mem_root)
94
94
{
95
 
  return mem_root->alloc_root(static_cast<size_t>(size));
 
95
  return mem_root->alloc(size);
96
96
}
97
97
 
98
98
String::~String() { free(); }