mirror of
https://git.freebsd.org/ports.git
synced 2025-05-23 04:03:14 -04:00
- While here convert to USES=localbase PR: 225307 Submitted by: me Approved by: Maintainer timeout
13 lines
461 B
C++
13 lines
461 B
C++
--- 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<T> &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<T>;
|
|
private:
|
|
IList(const IList<T> &); // undefined
|