summaryrefslogtreecommitdiffstats
path: root/c++/test/h5cpputil.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2014-03-23 06:12:05 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2014-03-23 06:12:05 (GMT)
commite18ee63c5a5c294d1949d83b1d34ae1fe15086ae (patch)
tree5c60965406ce261a62bff2972a3c57228df535e5 /c++/test/h5cpputil.cpp
parentf2aa62ec76993c04c807c27e7a577a1ac3b0da3f (diff)
downloadhdf5-e18ee63c5a5c294d1949d83b1d34ae1fe15086ae.zip
hdf5-e18ee63c5a5c294d1949d83b1d34ae1fe15086ae.tar.gz
hdf5-e18ee63c5a5c294d1949d83b1d34ae1fe15086ae.tar.bz2
[svn-r24868] Purpose: Applied user patch, HDFFV-8623
Description: Applied patch from user Jason Newton. JIRA issue HDFFV-8623, patch 0009, improve c++ compatibility with exceptions. All additions of "throw()" are included. Exception::what() is not added because it is not necessary. It was suggested for the name, which follows stdlib. Merged from trunk -r24830 Platforms tested: SunOS 5.11 (emu) Linux/32 2.6 (jam) Linux/64 2.6 (koala)/PGI compilers
Diffstat (limited to 'c++/test/h5cpputil.cpp')
-rw-r--r--c++/test/h5cpputil.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/test/h5cpputil.cpp b/c++/test/h5cpputil.cpp
index cd85b6e..40e81cc 100644
--- a/c++/test/h5cpputil.cpp
+++ b/c++/test/h5cpputil.cpp
@@ -220,7 +220,7 @@ InvalidActionException::InvalidActionException(const H5std_string func_name, con
//--------------------------------------------------------------------------
// Function: InvalidActionException destructor
//--------------------------------------------------------------------------
-InvalidActionException::~InvalidActionException() {}
+InvalidActionException::~InvalidActionException() throw() {}
//--------------------------------------------------------------------------
// Function: TestFailedException default constructor
@@ -242,5 +242,5 @@ TestFailedException::TestFailedException(const H5std_string func_name, const H5s
//--------------------------------------------------------------------------
// Function: TestFailedException destructor
//--------------------------------------------------------------------------
-TestFailedException::~TestFailedException() {}
+TestFailedException::~TestFailedException() throw() {}