~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/instance/base.h

  • Committer: Mark Atwood
  • Date: 2011-08-12 04:08:33 UTC
  • mfrom: (2385.2.17 refactor5)
  • Revision ID: me@mark.atwood.name-20110812040833-u6j85nc6ahuc0dtz
mergeĀ lp:~olafvdspek/drizzle/refactor5

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
    return mem_root.alloc(arg);
176
176
  }
177
177
 
178
 
  char *strdup(const char *str_arg, size_t len_arg)
179
 
  {
180
 
    return mem_root.strdup(str_arg, len_arg);
181
 
  }
182
 
 
183
178
  memory::Root& mem()
184
179
  {
185
180
    return mem_root;