~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.cc

  • Committer: Olaf van der Spek
  • Date: 2011-06-23 14:03:48 UTC
  • mto: This revision was merged to the branch mainline in revision 2349.
  • Revision ID: olafvdspek@gmail.com-20110623140348-rnees8v44f213rvv
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
    next_insert_id(0), insert_id_for_cur_row(0)
69
69
{ }
70
70
 
71
 
Cursor::~Cursor(void)
 
71
Cursor::~Cursor()
72
72
{
73
 
  assert(locked == false);
 
73
  assert(not locked);
74
74
  /* TODO: assert(inited == NONE); */
75
75
}
76
76