From b631253c9d23085cf5e0efd1868c6bf194d28ee6 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 11 Dec 2002 01:19:37 +0000 Subject: [PATCH] define pure virtual ipAddrToAsciiAsynchronous::ioCompletionNotify for situations where the derived class's destructor is running precisely when the io completes, but the ipAddrToAsciiAsynchronous destructor has not yet run --- src/libCom/misc/ipAddrToAsciiAsynchronous.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/libCom/misc/ipAddrToAsciiAsynchronous.cpp b/src/libCom/misc/ipAddrToAsciiAsynchronous.cpp index c1ab2e007..4fdfeeadd 100644 --- a/src/libCom/misc/ipAddrToAsciiAsynchronous.cpp +++ b/src/libCom/misc/ipAddrToAsciiAsynchronous.cpp @@ -180,6 +180,12 @@ ipAddrToAsciiAsynchronous::~ipAddrToAsciiAsynchronous () } } +// for situations where the derived destructor is running, but the +// ipAddrToAsciiAsynchronous destructor has not run yet +void ipAddrToAsciiAsynchronous::ioCompletionNotify ( const char * ) +{ +} + epicsShareFunc void ipAddrToAsciiAsynchronous::ioInitiate ( ipAddrToAsciiEngine & engine ) { bool success;