summaryrefslogtreecommitdiff
path: root/TAO/tao/Exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Exception.cpp')
-rw-r--r--TAO/tao/Exception.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Exception.cpp b/TAO/tao/Exception.cpp
index b6de9c41fce..a0234612fc2 100644
--- a/TAO/tao/Exception.cpp
+++ b/TAO/tao/Exception.cpp
@@ -45,13 +45,13 @@ CORBA::Exception::Exception (const CORBA::Exception &src)
// responsible for releasing any storage owned by the exception. It
// can do this because it's got the local name and the id.
-CORBA::Exception::Exception (void)
+CORBA::Exception::Exception ()
: id_ (),
name_ ()
{
}
-CORBA::Exception::~Exception (void)
+CORBA::Exception::~Exception ()
{
}
@@ -68,13 +68,13 @@ CORBA::Exception::operator= (const CORBA::Exception &src)
}
const char *
-CORBA::Exception::_rep_id (void) const
+CORBA::Exception::_rep_id () const
{
return this->id_.in ();
}
const char *
-CORBA::Exception::_name (void) const
+CORBA::Exception::_name () const
{
return this->name_.in ();
}