~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/field/timestamp.cc

Renamed __attribute__((__unused__)) to __attribute__((unused)). 
It takes up a few less chars, but also seems to be the standard usage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
 */
70
70
 
71
71
Field_timestamp::Field_timestamp(uchar *ptr_arg,
72
 
                                 uint32_t len_arg __attribute__((__unused__)),
 
72
                                 uint32_t len_arg __attribute__((unused)),
73
73
                                 uchar *null_ptr_arg, uchar null_bit_arg,
74
74
                                 enum utype unireg_check_arg,
75
75
                                 const char *field_name_arg,
142
142
 
143
143
int Field_timestamp::store(const char *from,
144
144
                           uint len,
145
 
                           CHARSET_INFO *cs __attribute__((__unused__)))
 
145
                           CHARSET_INFO *cs __attribute__((unused)))
146
146
{
147
147
  MYSQL_TIME l_time;
148
148
  my_time_t tmp= 0;
202
202
 
203
203
 
204
204
int Field_timestamp::store(int64_t nr,
205
 
                           bool unsigned_val __attribute__((__unused__)))
 
205
                           bool unsigned_val __attribute__((unused)))
206
206
{
207
207
  MYSQL_TIME l_time;
208
208
  my_time_t timestamp= 0;