~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lock.cc

  • Committer: Brian Aker
  • Date: 2010-10-25 21:20:33 UTC
  • mto: This revision was merged to the branch mainline in revision 1879.
  • Revision ID: brian@tangent.org-20101025212033-9b6ll0yaibrba5p0
Stick to static cast.

Show diffs side-by-side

added added

removed removed

Lines of Context:
726
726
{
727
727
  if (table_list->table)
728
728
  {
729
 
    remove_table(dynamic_cast<table::Concurrent *>(table_list->table));
 
729
    remove_table(static_cast<table::Concurrent *>(table_list->table));
730
730
    broadcast_refresh();
731
731
  }
732
732
}