~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/field/blob.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:
51
51
void Field_blob::store_length(uchar *i_ptr,
52
52
                              uint i_packlength,
53
53
                              uint32_t i_number,
54
 
                              bool low_byte_first __attribute__((__unused__)))
 
54
                              bool low_byte_first __attribute__((unused)))
55
55
{
56
56
  switch (i_packlength) {
57
57
  case 1:
85
85
 
86
86
uint32_t Field_blob::get_length(const uchar *pos,
87
87
                              uint packlength_arg,
88
 
                              bool low_byte_first __attribute__((__unused__)))
 
88
                              bool low_byte_first __attribute__((unused)))
89
89
{
90
90
  switch (packlength_arg) {
91
91
  case 1:
343
343
 
344
344
uint Field_blob::get_key_image(uchar *buff,
345
345
                               uint length,
346
 
                               imagetype type_arg __attribute__((__unused__)))
 
346
                               imagetype type_arg __attribute__((unused)))
347
347
{
348
348
  uint32_t blob_length= get_length(ptr);
349
349
  uchar *blob;
529
529
 
530
530
   @return  New pointer into memory based on from + length of the data
531
531
*/
532
 
const uchar *Field_blob::unpack(uchar *to __attribute__((__unused__)),
 
532
const uchar *Field_blob::unpack(uchar *to __attribute__((unused)),
533
533
                                const uchar *from,
534
534
                                uint param_data,
535
535
                                bool low_byte_first)