fixed to preserve 8 byte alignment

This commit is contained in:
Jeff Hill
2002-01-15 20:02:45 +00:00
parent cbb858ac9a
commit 2519c4f377
+1 -1
View File
@@ -72,8 +72,8 @@
template < class T, unsigned DEBUG_LEVEL >
union tsFreeListItem {
public:
tsFreeListItem < T, DEBUG_LEVEL > *pNext;
char pad[ sizeof ( T ) ];
tsFreeListItem < T, DEBUG_LEVEL > *pNext;
};
template < class T, unsigned N = 0x400, unsigned DEBUG_LEVEL = 0u >