* 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:
Corinna Vinschen
2004-01-16 13:39:25 +00:00
parent c0bd991305
commit 8e7014383b
3 changed files with 7 additions and 8 deletions

View File

@ -46,7 +46,7 @@ public:
_next (NULL)
{}
virtual ~cleanup_routine ();
virtual ~cleanup_routine () = 0;
bool operator== (const cleanup_routine &rhs) const
{