~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_list.h

  • Committer: Monty Taylor
  • Date: 2011-02-15 20:03:56 UTC
  • mto: (2184.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2185.
  • Revision ID: mordred@inaugust.com-20110215200356-83bpj32ketgrnd9f
A slew of tiny meaningless changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
422
422
  inline T** ref(void)      { return (T**) base_list_iterator::ref(); }
423
423
};
424
424
 
 
425
 
425
426
template <class T> class List_iterator_fast :public base_list_iterator
426
427
{
427
 
private:
428
 
  inline T *replace(T *);
429
 
  inline T *replace(List<T> &);
430
 
  inline void remove(void);
431
 
  inline void after(T *);
432
 
  inline T** ref(void);
 
428
protected:
 
429
  inline T *replace(T *)   { return (T*) 0; }
 
430
  inline T *replace(List<T> &) { return (T*) 0; }
 
431
  inline void remove(void)  { }
 
432
  inline void after(T *)   { }
 
433
  inline T** ref(void)      { return (T**) 0; }
433
434
 
434
435
public:
435
436
  inline List_iterator_fast(List<T> &a) : base_list_iterator(a) {}
442
443
  }
443
444
};
444
445
 
 
446
 
445
447
/**
446
448
  Make a deep copy of each list element.
447
449