--- include/IList.h.orig 2005-07-21 14:04:38 UTC +++ include/IList.h @@ -26,8 +26,8 @@ class IList : private IListBase { (public) void swap(IList &list) { IListBase::swap(list); } T *head() const { return (T *)IListBase::head(); } T *get() { return (T *)IListBase::get(); } - IListBase::clear; - IListBase::empty; + using IListBase::clear; + using IListBase::empty; friend class IListIter; private: IList(const IList &); // undefined