~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/user_var_as_out_param.cc

  • Committer: Monty Taylor
  • Date: 2009-01-23 06:03:42 UTC
  • mto: (801.1.3 testable) (779.3.2 devel)
  • mto: This revision was merged to the branch mainline in revision 811.
  • Revision ID: mordred@inaugust.com-20090123060342-i00afsgar78qz3nu
Got rid of __attribute__((unused)) and the like from the .cc files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
}
70
70
 
71
71
 
72
 
String* Item_user_var_as_out_param::val_str(String *str __attribute__((unused)))
 
72
String* Item_user_var_as_out_param::val_str(String *)
73
73
{
74
74
  assert(0);
75
75
  return 0;
76
76
}
77
77
 
78
 
my_decimal* Item_user_var_as_out_param::val_decimal(my_decimal *decimal_buffer __attribute__((unused)))
 
78
my_decimal* Item_user_var_as_out_param::val_decimal(my_decimal *)
79
79
{
80
80
  assert(0);
81
81
  return 0;
83
83
 
84
84
 
85
85
void Item_user_var_as_out_param::print(String *str,
86
 
                                       enum_query_type query_type __attribute__((unused)))
 
86
                                       enum_query_type )
87
87
{
88
88
  str->append('@');
89
89
  str->append(name.str,name.length);