~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/int64_t.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:
99
99
}
100
100
 
101
101
 
102
 
int Field_int64_t::store(int64_t nr, bool unsigned_val __attribute__((unused)))
 
102
int Field_int64_t::store(int64_t nr, bool )
103
103
{
104
104
  int error= 0;
105
105
 
145
145
 
146
146
 
147
147
String *Field_int64_t::val_str(String *val_buffer,
148
 
                                String *val_ptr __attribute__((unused)))
 
148
                                String *)
149
149
{
150
150
  const CHARSET_INFO * const cs= &my_charset_bin;
151
151
  uint32_t length;
191
191
  return (a < b) ? -1 : (a > b) ? 1 : 0;
192
192
}
193
193
 
194
 
void Field_int64_t::sort_string(unsigned char *to,uint32_t length __attribute__((unused)))
 
194
void Field_int64_t::sort_string(unsigned char *to,uint32_t )
195
195
{
196
196
#ifdef WORDS_BIGENDIAN
197
197
  if (!table->s->db_low_byte_first)