~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Monty Taylor
  • Date: 2008-10-03 20:18:49 UTC
  • Revision ID: monty@inaugust.com-20081003201849-ak8xjvh25bnnr43e
Removed my_reinterpret_cast. It's not GNU specific.

Show diffs side-by-side

added added

removed removed

Lines of Context:
455
455
  st_select_lex* outer_select();
456
456
  st_select_lex* first_select()
457
457
  {
458
 
    return my_reinterpret_cast(st_select_lex*)(slave);
 
458
    return reinterpret_cast<st_select_lex*>(slave);
459
459
  }
460
460
  st_select_lex_unit* next_unit()
461
461
  {
462
 
    return my_reinterpret_cast(st_select_lex_unit*)(next);
 
462
    return reinterpret_cast<st_select_lex_unit*>(next);
463
463
  }
464
464
  st_select_lex* return_after_parsing() { return return_to; }
465
465
  void exclude_level();