summaryrefslogtreecommitdiffstats
path: root/c++/test
diff options
context:
space:
mode:
Diffstat (limited to 'c++/test')
-rw-r--r--c++/test/h5cpputil.cpp14
-rw-r--r--c++/test/h5cpputil.h4
2 files changed, 2 insertions, 16 deletions
diff --git a/c++/test/h5cpputil.cpp b/c++/test/h5cpputil.cpp
index c3feefa..933aa7d 100644
--- a/c++/test/h5cpputil.cpp
+++ b/c++/test/h5cpputil.cpp
@@ -198,13 +198,6 @@ InvalidActionException::InvalidActionException(const H5std_string &func, const H
}
//--------------------------------------------------------------------------
-// Function: InvalidActionException destructor
-//--------------------------------------------------------------------------
-InvalidActionException::~InvalidActionException() throw()
-{
-}
-
-//--------------------------------------------------------------------------
// Function: TestFailedException default constructor
//--------------------------------------------------------------------------
TestFailedException::TestFailedException() : Exception()
@@ -225,10 +218,3 @@ TestFailedException::TestFailedException(const H5std_string &func, const H5std_s
: Exception(func, message)
{
}
-
-//--------------------------------------------------------------------------
-// Function: TestFailedException destructor
-//--------------------------------------------------------------------------
-TestFailedException::~TestFailedException() throw()
-{
-}
diff --git a/c++/test/h5cpputil.h b/c++/test/h5cpputil.h
index 392382d..fa6822a 100644
--- a/c++/test/h5cpputil.h
+++ b/c++/test/h5cpputil.h
@@ -49,14 +49,14 @@ class InvalidActionException : public Exception {
public:
InvalidActionException(const H5std_string &func_name, const H5std_string &message = DEFAULT_MSG);
InvalidActionException();
- ~InvalidActionException() throw() override;
+ ~InvalidActionException() override = default;
};
class TestFailedException : public Exception {
public:
TestFailedException(const H5std_string &func_name, const H5std_string &message = DEFAULT_MSG);
TestFailedException();
- ~TestFailedException() throw() override;
+ ~TestFailedException() override = default;
};
// Overloaded/Template functions to verify values and display proper info