~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/handler/ha_innodb.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:
191
191
#endif
192
192
 
193
193
static uchar* innobase_get_key(INNOBASE_SHARE *share, size_t *length,
194
 
        my_bool not_used __attribute__((unused)));
 
194
        my_bool );
195
195
static INNOBASE_SHARE *get_share(const char *table_name);
196
196
static void free_share(INNOBASE_SHARE *share);
197
197
static int innobase_close_connection(handlerton *hton, THD* thd);
8156
8156
****************************************************************************/
8157
8157
 
8158
8158
static uchar* innobase_get_key(INNOBASE_SHARE* share, size_t *length,
8159
 
        my_bool not_used __attribute__((unused)))
 
8159
        my_bool )
8160
8160
{
8161
8161
        *length=share->table_name_length;
8162
8162