From db5526ecd6e04f5ef8cd012f1b8e9c82c4687075 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 28 Feb 2002 00:27:49 +0000 Subject: [PATCH] fix gnu compiler detected problem --- src/libCom/cxxTemplates/tsFreeList.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/libCom/cxxTemplates/tsFreeList.h b/src/libCom/cxxTemplates/tsFreeList.h index 57dc39846..89bff2962 100644 --- a/src/libCom/cxxTemplates/tsFreeList.h +++ b/src/libCom/cxxTemplates/tsFreeList.h @@ -69,8 +69,9 @@ # pragma warning ( disable : 4291 ) #endif -template < class T, unsigned DEBUG_LEVEL > union tsFreeListItem; -template < class T, unsigned N = 0x400, unsigned DEBUG_LEVEL = 0u > +template < class T, unsigned DEBUG_LEVEL > + union tsFreeListItem; +template < class T, unsigned N, unsigned DEBUG_LEVEL> struct tsFreeListChunk; template < class T, unsigned N = 0x400, unsigned DEBUG_LEVEL = 0u >