added default for number of objects allocated

This commit is contained in:
Jeff Hill
2000-04-27 16:23:01 +00:00
parent c92b60022c
commit e5d5c9f62f
+1 -1
View File
@@ -32,7 +32,7 @@ public:
tsFreeListItem < T > items [N];
};
template < class T, unsigned N >
template < class T, unsigned N = 0x400 >
class tsFreeList : private osiMutex {
public:
tsFreeList ();