From e1b8caa8d738533ab0a594cc228af42b111e91a3 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 10 Feb 2009 22:58:43 +0000 Subject: [PATCH] fixed comment --- src/libCom/cxxTemplates/tsFreeList.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libCom/cxxTemplates/tsFreeList.h b/src/libCom/cxxTemplates/tsFreeList.h index 068b16dd5..75d272587 100644 --- a/src/libCom/cxxTemplates/tsFreeList.h +++ b/src/libCom/cxxTemplates/tsFreeList.h @@ -35,18 +35,18 @@ // 1) add the following static, private free list data members // to your class // -// static epicsSingleton < tsFreeList < class classXYZ > > pFreeList; +// static tsFreeList < class classXYZ > freeList; // // 2) add the following member functions to your class // // inline void * classXYZ::operator new ( size_t size ) // { -// return classXYZ::pFreeList->allocate ( size ); +// return freeList.allocate ( size ); // } // // inline void classXYZ::operator delete ( void *pCadaver, size_t size ) // { -// classXYZ::pFreeList->release ( pCadaver, size ); +// freeList.release ( pCadaver, size ); // } // // NOTES: