~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_list.h

Bunch of warning cleanups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
429
429
template <class T> class List_iterator_fast :public base_list_iterator
430
430
{
431
431
protected:
432
 
  inline T *replace(T *a)   { return (T*) 0; }
433
 
  inline T *replace(List<T> &a) { return (T*) 0; }
 
432
  inline T *replace(T *a __attribute__((__unused__)))   { return (T*) 0; }
 
433
  inline T *replace(List<T> &a __attribute__((__unused__))) { return (T*) 0; }
434
434
  inline void remove(void)  { }
435
 
  inline void after(T *a)   { }
 
435
  inline void after(T *a __attribute__((__unused__)))   { }
436
436
  inline T** ref(void)      { return (T**) 0; }
437
437
 
438
438
public: