summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-02-03 19:49:42 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2023-02-03 19:49:42 +0100
commit716ee59f4081486404adae50f46172a39518e619 (patch)
treeee2b1dceba00df480bbd01df7a667f57aa9415b0
parent8ab31e3e5bb8c09a9c326a54545f4cb475345a78 (diff)
downloadATCD-716ee59f4081486404adae50f46172a39518e619.tar.gz
Make destructor default
* TAO/tao/SystemException.cpp: * TAO/tao/SystemException.h:
-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;