summaryrefslogtreecommitdiff
path: root/TAO/tao/DynamicInterface/ExceptionList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/DynamicInterface/ExceptionList.cpp')
-rw-r--r--TAO/tao/DynamicInterface/ExceptionList.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/DynamicInterface/ExceptionList.cpp b/TAO/tao/DynamicInterface/ExceptionList.cpp
index 40a06e0ded3..82f57f73181 100644
--- a/TAO/tao/DynamicInterface/ExceptionList.cpp
+++ b/TAO/tao/DynamicInterface/ExceptionList.cpp
@@ -67,26 +67,26 @@ CORBA::ExceptionList::remove (CORBA::ULong)
}
CORBA::ExceptionList_ptr
-CORBA::ExceptionList::_duplicate (void)
+CORBA::ExceptionList::_duplicate ()
{
this->_incr_refcount ();
return this;
}
void
-CORBA::ExceptionList::_destroy (void)
+CORBA::ExceptionList::_destroy ()
{
this->_decr_refcount ();
}
void
-CORBA::ExceptionList::_incr_refcount (void)
+CORBA::ExceptionList::_incr_refcount ()
{
++this->refcount_;
}
void
-CORBA::ExceptionList::_decr_refcount (void)
+CORBA::ExceptionList::_decr_refcount ()
{
CORBA::ULong const refcount = --this->refcount_;