blob: 29fe8e3f1e1dc51b59664213614d7b7ddbaff4e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- 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
|