summaryrefslogtreecommitdiff
path: root/utils/List.h
diff options
context:
space:
mode:
authorchatty1993-12-22 12:26:40 +0000
committerchatty1993-12-22 12:26:40 +0000
commitd57dd00975ec10a65238f0339dba036a611e17b2 (patch)
treea8271fc012f7466c992e04146daaed8675ed7656 /utils/List.h
parent7ebcfbbbfb1f844261b3c810684ffa244e41080b (diff)
downloadivy-league-d57dd00975ec10a65238f0339dba036a611e17b2.zip
ivy-league-d57dd00975ec10a65238f0339dba036a611e17b2.tar.gz
ivy-league-d57dd00975ec10a65238f0339dba036a611e17b2.tar.bz2
ivy-league-d57dd00975ec10a65238f0339dba036a611e17b2.tar.xz
changed arg of operator new
Added lots of <ITEM>
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); }
};