~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/table.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:
1193
1193
 
1194
1194
/* The following is only needed for debugging */
1195
1195
 
1196
 
static inline my_bitmap_map *dbug_tmp_use_all_columns(TABLE *table __attribute__((__unused__)),
1197
 
                                                      MY_BITMAP *bitmap __attribute__((__unused__)))
 
1196
static inline my_bitmap_map *dbug_tmp_use_all_columns(TABLE *table __attribute__((unused)),
 
1197
                                                      MY_BITMAP *bitmap __attribute__((unused)))
1198
1198
{
1199
1199
  return 0;
1200
1200
}
1201
1201
 
1202
 
static inline void dbug_tmp_restore_column_map(MY_BITMAP *bitmap __attribute__((__unused__)),
1203
 
                                               my_bitmap_map *old __attribute__((__unused__)))
 
1202
static inline void dbug_tmp_restore_column_map(MY_BITMAP *bitmap __attribute__((unused)),
 
1203
                                               my_bitmap_map *old __attribute__((unused)))
1204
1204
{
1205
1205
  return;
1206
1206
}