mirror of
https://git.freebsd.org/ports.git
synced 2025-05-28 08:56:28 -04:00
- While here convert to USES=localbase PR: 225307 Submitted by: me Approved by: Maintainer timeout
13 lines
402 B
C
13 lines
402 B
C
--- include/IListIter.h.orig 2005-07-21 14:04:38 UTC
|
|
+++ include/IListIter.h
|
|
@@ -17,8 +17,8 @@ class IListIter : private IListIterBase { (public)
|
|
IListIter(const IList<T> &list) : IListIterBase(list) { }
|
|
T *cur() const { return (T *)IListIterBase::cur(); }
|
|
|
|
- IListIterBase::next;
|
|
- IListIterBase::done;
|
|
+ using IListIterBase::next;
|
|
+ using IListIterBase::done;
|
|
};
|
|
|
|
#ifdef SP_NAMESPACE
|