~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_row.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:
45
45
  while ((item= li++))
46
46
  {
47
47
    items[i]= item;
48
 
    i++;    
 
48
    i++;
49
49
  }
50
50
}
51
51
 
52
 
void Item_row::illegal_method_call(const char *method __attribute__((unused)))
 
52
void Item_row::illegal_method_call(const char *)
53
53
{
54
54
  assert(0);
55
55
  my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
56
56
  return;
57
57
}
58
58
 
59
 
bool Item_row::fix_fields(Session *session, Item **ref __attribute__((unused)))
 
59
bool Item_row::fix_fields(Session *session, Item **)
60
60
{
61
61
  assert(fixed == 0);
62
62
  null_value= 0;
121
121
  }
122
122
}
123
123
 
124
 
void Item_row::fix_after_pullout(st_select_lex *new_parent,
125
 
                                 Item **ref __attribute__((unused)))
 
124
void Item_row::fix_after_pullout(st_select_lex *new_parent, Item **)
126
125
{
127
126
  used_tables_cache= 0;
128
127
  const_item_cache= 1;