~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/item_strfunc.h

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:
365
365
  const char *func_name() const { return "user"; }
366
366
  const char *fully_qualified_func_name() const { return "user()"; }
367
367
  int save_in_field(Field *field,
368
 
                    bool no_conversions __attribute__((__unused__)))
 
368
                    bool no_conversions __attribute__((unused)))
369
369
  {
370
370
    return save_str_value_in_field(field, &str_value);
371
371
  }