diff --git a/src/libCom/misc/ipAddrToAsciiAsynchronous.cpp b/src/libCom/misc/ipAddrToAsciiAsynchronous.cpp index 42a980a27..1e40efb50 100644 --- a/src/libCom/misc/ipAddrToAsciiAsynchronous.cpp +++ b/src/libCom/misc/ipAddrToAsciiAsynchronous.cpp @@ -63,6 +63,18 @@ private: friend class ipAddrToAsciiEnginePrivate; }; +#ifdef _MSC_VER +# pragma warning ( push ) +# pragma warning ( disable:4660 ) +#endif + +template class tsFreeList + < ipAddrToAsciiTransactionPrivate, 0x80, epicsMutexNOOP >; + +#ifdef _MSC_VER +# pragma warning ( pop ) +#endif + // - this class executes the synchronous DNS query // - it creates one thread class ipAddrToAsciiEnginePrivate :