summaryrefslogtreecommitdiff
path: root/utils/List.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/List.h')
-rw-r--r--utils/List.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/List.h b/utils/List.h
index 98311a9..72b015f 100644
--- a/utils/List.h
+++ b/utils/List.h
@@ -36,7 +36,7 @@ friend class CcuListIter;
CcuListLink* Next;
inline CcuListLink (CcuListItem* e, CcuListLink* n = 0) { Entry = e; Next = n ? n : this; }
CcuListLink* Previous ();
- void* operator new (unsigned int);
+ void* operator new (unsigned long);
void operator delete (void*);
};
#endif
@@ -129,7 +129,7 @@ inline int Find (ITEM* it) const { return CcuList::Find (it); }
inline void Append (ITEM* it) { CcuList::Append (it); }
inline void Prepend (ITEM* it) { CcuList::Prepend (it); }
-inline CcuListOf& operator << (ITEM* it) { CcuList::Append (it); return *this; }
+inline CcuListOf<ITEM>& operator << (ITEM* it) { CcuList::Append (it); return *this; }
inline ITEM* RemoveFirst () { return (ITEM*) (CcuList::RemoveFirst ()); }
inline ITEM* RemoveLast () { return (ITEM*) (CcuList::RemoveLast ()); }
@@ -144,9 +144,9 @@ inline ITEM* RemoveAfter (const CcuListIterOf <ITEM>& li) { return (ITEM*) CcuL
template <class ITEM> class CcuListIterOf : public CcuListIter {
public:
inline CcuListIterOf (const CcuListOf <ITEM>& l) : CcuListIter (l) { }
-inline CcuListIterOf& operator = (const CcuListOf <ITEM>& l) { return (CcuListIterOf&) CcuListIter::operator = (l); }
-inline CcuListIterOf& operator = (const CcuListIterOf& li) { return (CcuListIterOf&) CcuListIter::operator = (li); }
-inline CcuListIterOf& operator ++ () { return (CcuListIterOf&) CcuListIter::operator ++ (); }
+inline CcuListIterOf<ITEM>& operator = (const CcuListOf <ITEM>& l) { return (CcuListIterOf <ITEM>&) CcuListIter::operator = (l); }
+inline CcuListIterOf<ITEM>& operator = (const CcuListIterOf <ITEM>& li) { return (CcuListIterOf <ITEM>&) CcuListIter::operator = (li); }
+inline CcuListIterOf<ITEM>& operator ++ () { return (CcuListIterOf <ITEM>&) CcuListIter::operator ++ (); }
inline ITEM* operator * () const { return (ITEM*) CcuListIter::operator * (); }
inline int Find (ITEM* it) { return CcuListIter::Find (it); }
};