turn of ms already instantiated warning

This commit is contained in:
Jeff Hill
2001-10-22 03:18:52 +00:00
parent ed88bdd35b
commit 7b1b2988d7
32 changed files with 291 additions and 11 deletions

View File

@@ -35,11 +35,20 @@
#include "autoPtrDestroy.h"
#include "cac.h"
#if defined ( _MSC_VER )
# pragma warning ( push )
# pragma warning ( disable: 4660 )
#endif
template class tsSLNode < CASG>;
template class tsFreeList < CASG, 128, 0 >;
template class tsFreeList < syncGroupWriteNotify, 128, 0 >;
template class tsFreeList < syncGroupReadNotify, 128, 0 >;
#if defined ( _MSC_VER )
# pragma warning ( pop )
#endif
tsFreeList < struct CASG, 128 > CASG::freeList;
epicsMutex CASG::freeListMutex;