diff --git a/src/libCom/cxxTemplates/tsFreeList.h b/src/libCom/cxxTemplates/tsFreeList.h index c4e4f6550..4780dcd5d 100644 --- a/src/libCom/cxxTemplates/tsFreeList.h +++ b/src/libCom/cxxTemplates/tsFreeList.h @@ -78,8 +78,8 @@ public: template < class T, unsigned N = 0x400, unsigned DEBUG_LEVEL = 0u > struct tsFreeListChunk { - tsFreeListChunk < T, N, DEBUG_LEVEL > *pNext; tsFreeListItem < T, DEBUG_LEVEL > items [N]; + tsFreeListChunk < T, N, DEBUG_LEVEL > *pNext; }; template < class T, unsigned N = 0x400, unsigned DEBUG_LEVEL = 0u >