* process.h (cleanup_routine::~cleanup_routine): Make pure virtual
function to avoid miscompilation with certain versions of gcc. * process.cc (cleanup_routine::~cleanup_routine): Remove.
This commit is contained in:
@ -46,7 +46,7 @@ public:
|
||||
_next (NULL)
|
||||
{}
|
||||
|
||||
virtual ~cleanup_routine ();
|
||||
virtual ~cleanup_routine () = 0;
|
||||
|
||||
bool operator== (const cleanup_routine &rhs) const
|
||||
{
|
||||
|
Reference in New Issue
Block a user