avoid useless vc++ warning

This commit is contained in:
Jeff Hill
2002-03-27 21:32:20 +00:00
parent 6b466fc7ed
commit cdfa4b5363
25 changed files with 252 additions and 0 deletions

View File

@@ -21,9 +21,18 @@
#include "oldAccess.h"
#include "cac.h"
#ifdef _MSC_VER
# pragma warning ( push )
# pragma warning ( disable:4660 )
#endif
template class tsFreeList < oldChannelNotify, 1024 >;
template class epicsSingleton < tsFreeList < oldChannelNotify, 1024 > >;
#ifdef _MSC_VER
# pragma warning ( pop )
#endif
epicsSingleton < tsFreeList < struct oldChannelNotify, 1024 > > oldChannelNotify::pFreeList;
extern "C" void cacNoopConnHandler ( struct connection_handler_args )