~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/key_part_spec.h

  • Committer: Olaf van der Spek
  • Date: 2011-06-26 16:37:38 UTC
  • mto: This revision was merged to the branch mainline in revision 2350.
  • Revision ID: olafvdspek@gmail.com-20110626163738-9mu5phbhhlt4236p
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
  */
48
48
  Key_part_spec *clone(memory::Root *mem_root) const
49
49
  {
50
 
    return new (mem_root) Key_part_spec(*this);
 
50
    return new (*mem_root) Key_part_spec(*this);
51
51
  }
52
52
};
53
53