summaryrefslogtreecommitdiff
path: root/TAO/tao/DynamicInterface/ExceptionList.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-02-25 11:14:12 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-02-25 11:14:12 +0100
commit23b2fc3441d82e141e33428fafe094269eb1d392 (patch)
treebbd21e56e9432b1639508d72e496c40d7514f938 /TAO/tao/DynamicInterface/ExceptionList.cpp
parent3ee40a3fef0cdd8a2ce86531a2e78cb218608023 (diff)
downloadATCD-23b2fc3441d82e141e33428fafe094269eb1d392.tar.gz
Use nullptr and cleanup
* TAO/tao/AnyTypeCode/NVList.inl: * TAO/tao/AnyTypeCode/TypeCode.inl: * TAO/tao/CORBA_methods.h: * TAO/tao/DynamicInterface/AMH_DSI_Response_Handler.cpp: * TAO/tao/DynamicInterface/AMH_DSI_Response_Handler.h: * TAO/tao/DynamicInterface/Context.cpp: * TAO/tao/DynamicInterface/Context.h: * TAO/tao/DynamicInterface/Context.inl: * TAO/tao/DynamicInterface/DII_Reply_Handler.cpp: * TAO/tao/DynamicInterface/DII_Reply_Handler.h: * TAO/tao/DynamicInterface/Dynamic_Adapter_Impl.cpp: * TAO/tao/DynamicInterface/ExceptionList.cpp: * TAO/tao/DynamicInterface/ExceptionList.h: * TAO/tao/DynamicInterface/ExceptionList.inl: * TAO/tao/DynamicInterface/Request.cpp: * TAO/tao/DynamicInterface/Request.h: * TAO/tao/DynamicInterface/Request.inl: * TAO/tao/DynamicInterface/Server_Request.cpp: * TAO/tao/DynamicInterface/Server_Request.h: * TAO/tao/DynamicInterface/Server_Request.inl: * TAO/tao/Environment.inl: * TAO/tao/IORTable/IOR_Table_Impl.h: * TAO/tao/IORTable/Locate_ResponseHandler.cpp: * TAO/tao/IORTable/Locate_ResponseHandler.h: * TAO/tao/LocalObject.inl: * TAO/tao/ORB.inl: * TAO/tao/Object.inl: * TAO/tao/PI/ORBInitInfo.h: * TAO/tao/Principal.h: * TAO/tao/Principal.inl: * TAO/tao/RTCORBA/Priority_Mapping_Manager.h: * TAO/tao/RTCORBA/RT_ProtocolPropertiesC.h: * TAO/tao/RTScheduling/RTScheduler_Manager.h: * TAO/tao/Valuetype/AbstractBase.inl:
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_;