[Cppunit-cvs] cppunit2/include/cpputtools/configuration errors.h,1.2,1.3
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-02-23 22:49:04
|
Update of /cvsroot/cppunit/cppunit2/include/cpputtools/configuration In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21170/include/cpputtools/configuration Modified Files: errors.h Log Message: * added no throw destructor to subclass of std::exception Index: errors.h =================================================================== RCS file: /cvsroot/cppunit/cppunit2/include/cpputtools/configuration/errors.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** errors.h 23 Jun 2004 18:44:38 -0000 1.2 --- errors.h 23 Feb 2005 22:48:56 -0000 1.3 *************** *** 36,39 **** --- 36,43 ---- } + ~ValidatorError() throw() + { + } + void setOptionName( const String &name ) { *************** *** 101,104 **** --- 105,110 ---- const String &optionName ); + ~CommandLineParseError() throw(); + Cause cause() const; *************** *** 127,130 **** --- 133,141 ---- + inline CommandLineParseError::~CommandLineParseError() throw() + { + } + + inline CommandLineParseError::Cause CommandLineParseError::cause() const |