From: stephan b. <sg...@us...> - 2004-12-24 23:04:52
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7761/include/pclasses Modified Files: Phoenix.h Log Message: Added throw() to dtor, to avoid errors when it phoenixes a type which has a throw() dtor. Index: Phoenix.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/Phoenix.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Phoenix.h 23 Dec 2004 22:13:06 -0000 1.3 +++ Phoenix.h 24 Dec 2004 23:04:29 -0000 1.4 @@ -190,7 +190,7 @@ m_destroyed = false; } - virtual ~Phoenix() + virtual ~Phoenix() throw() { phoenix_CERR << "~Phoenix() @" << std::hex<< this << std::endl; m_destroyed = true; |