From: stephan b. <sg...@us...> - 2004-12-23 05:23:40
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/IO In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25730 Modified Files: IOError.h Log Message: added missing virtual on the dtor - gcc complains about it. Index: IOError.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/IO/IOError.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- IOError.h 23 Dec 2004 04:32:16 -0000 1.1 +++ IOError.h 23 Dec 2004 05:23:31 -0000 1.2 @@ -33,7 +33,7 @@ public: IOError(long errorNo, const char* what, const SourceInfo& si) throw(); IOError(const IOError& err) throw(); - ~IOError() throw(); + virtual ~IOError() throw(); long errorNo() const throw(); virtual Unicode::String text() const throw(); |