summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/tao/SystemException.cpp4
-rw-r--r--TAO/tao/SystemException.h2
2 files changed, 1 insertions, 5 deletions
diff --git a/TAO/tao/SystemException.cpp b/TAO/tao/SystemException.cpp
index c4df7669a0d..9fb0157a11f 100644
--- a/TAO/tao/SystemException.cpp
+++ b/TAO/tao/SystemException.cpp
@@ -86,10 +86,6 @@ CORBA::SystemException::SystemException (const CORBA::SystemException &src)
{
}
-CORBA::SystemException::~SystemException ()
-{
-}
-
CORBA::SystemException &
CORBA::SystemException::operator= (const CORBA::SystemException &src)
{
diff --git a/TAO/tao/SystemException.h b/TAO/tao/SystemException.h
index 1aeb7636e07..5f5fae29c26 100644
--- a/TAO/tao/SystemException.h
+++ b/TAO/tao/SystemException.h
@@ -92,7 +92,7 @@ namespace CORBA
SystemException (const SystemException & src);
/// Destructor.
- virtual ~SystemException ();
+ virtual ~SystemException () = default;
/// Get the minor status.
ULong minor () const;