ports/textproc/opensp/files/patch-include_IListIter.h
Guido Falsi ee08fc60e5 - Fix opensp build with clang 6
- While here convert to USES=localbase

PR:		225307
Submitted by:	me
Approved by:	Maintainer timeout
2018-02-03 13:36:44 +00:00

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