~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_delete.cc

  • Committer: Monty Taylor
  • Date: 2008-11-04 13:22:55 UTC
  • mto: (575.1.7 fix-headers)
  • mto: This revision was merged to the branch mainline in revision 577.
  • Revision ID: monty@inaugust.com-20081104132255-l9dhglk4ix6vd3u7
Changed a bunch of __attribute__((unused)) to removing the parameter name instead.

Show diffs side-by-side

added added

removed removed

Lines of Context:
503
503
 
504
504
 
505
505
int
506
 
multi_delete::prepare(List<Item> &values __attribute__((unused)),
507
 
                      SELECT_LEX_UNIT *u)
 
506
multi_delete::prepare(List<Item> &, SELECT_LEX_UNIT *u)
508
507
{
509
508
  
510
509
  unit= u;
599
598
}
600
599
 
601
600
 
602
 
bool multi_delete::send_data(List<Item> &values __attribute__((unused)))
 
601
bool multi_delete::send_data(List<Item> &)
603
602
{
604
603
  int secure_counter= delete_while_scanning ? -1 : 0;
605
604
  TableList *del_table;
606
 
  
 
605
 
607
606
 
608
607
  for (del_table= delete_tables;
609
608
       del_table;