qnx qcc compatibility fix

This commit is contained in:
serg@serg.mylan 2004-02-19 13:41:32 +01:00
commit 21a0716e84

View file

@ -286,7 +286,7 @@ protected:
inline T** ref(void) { return (T**) 0; }
public:
List_iterator_fast(List<T> &a) : base_list_iterator(a) {}
inline List_iterator_fast(List<T> &a) : base_list_iterator(a) {}
inline T* operator++(int) { return (T*) base_list_iterator::next_fast(); }
inline void rewind(void) { base_list_iterator::rewind(); }
void sublist(List<T> &list_arg, uint el_arg)