summaryrefslogtreecommitdiff
path: root/TAO/tao/Principal.h
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/Principal.h
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/Principal.h')
-rw-r--r--TAO/tao/Principal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Principal.h b/TAO/tao/Principal.h
index 756aac6a9a6..0b7fe0cc9cc 100644
--- a/TAO/tao/Principal.h
+++ b/TAO/tao/Principal.h
@@ -61,13 +61,13 @@ namespace CORBA
// The pseudo object operations.
static Principal * _duplicate (Principal *);
- static Principal * _nil (void);
+ static Principal * _nil ();
// = Stuff required for memory management.
- unsigned long _incr_refcount (void);
- unsigned long _decr_refcount (void);
+ unsigned long _incr_refcount ();
+ unsigned long _decr_refcount ();
- Principal (void);
+ Principal ();
// Useful for template programming.
typedef Principal_ptr _ptr_type;