~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/time/now.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:
70
70
}
71
71
 
72
72
bool Item_func_now::get_date(DRIZZLE_TIME *res,
73
 
                             uint32_t fuzzy_date __attribute__((unused)))
 
73
                             uint32_t )
74
74
{
75
75
  *res= ltime;
76
76
  return 0;
77
77
}
78
78
 
79
79
 
80
 
int Item_func_now::save_in_field(Field *to, bool no_conversions __attribute__((unused)))
 
80
int Item_func_now::save_in_field(Field *to, bool )
81
81
{
82
82
  to->set_notnull();
83
83
  return to->store_time(&ltime, DRIZZLE_TIMESTAMP_DATETIME);