15 lines
405 B
Text
15 lines
405 B
Text
|
Index: include/IListIter.h
|
||
|
--- include/IListIter.h.orig
|
||
|
+++ 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
|