diff options
author | Knut Petter Svendsen <knut@altuma.no> | 2022-09-13 22:57:39 +0200 |
---|---|---|
committer | Knut Petter Svendsen <knut@altuma.no> | 2022-09-13 22:57:39 +0200 |
commit | 3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch) | |
tree | 379c29e09bf55597fe6740cd163478cd1204a181 /TAO/tao/IIOP_Endpoint.h | |
parent | fe03724176dcfd20e0f9a6e493198469242be6b6 (diff) | |
download | ATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz |
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/tao/IIOP_Endpoint.h')
-rw-r--r-- | TAO/tao/IIOP_Endpoint.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/IIOP_Endpoint.h b/TAO/tao/IIOP_Endpoint.h index 7c4729f6a0f..ca4125a509b 100644 --- a/TAO/tao/IIOP_Endpoint.h +++ b/TAO/tao/IIOP_Endpoint.h @@ -50,7 +50,7 @@ public: friend class TAO_SSLIOP_Profile; /// Default constructor. - TAO_IIOP_Endpoint (void); + TAO_IIOP_Endpoint (); /// Constructor. This is the most efficient constructor since it /// does not require any address resolution processing. @@ -69,13 +69,13 @@ public: CORBA::Short priority); /// Destructor. - ~TAO_IIOP_Endpoint (void); + ~TAO_IIOP_Endpoint (); // = Implementation of abstract TAO_Endpoint methods. See // Endpoint.h for their documentation. - virtual TAO_Endpoint *next (void); + virtual TAO_Endpoint *next (); /** * Return the next endpoint in the list, but use protocol-specific @@ -97,14 +97,14 @@ public: virtual int addr_to_string (char *buffer, size_t length); /// Makes a copy of @c this - virtual TAO_Endpoint *duplicate (void); + virtual TAO_Endpoint *duplicate (); /// Return true if this endpoint is equivalent to @a other_endpoint. Two /// endpoints are equivalent if their port and host are the same. virtual CORBA::Boolean is_equivalent (const TAO_Endpoint *other_endpoint); /// Return a hash value for this object. - virtual CORBA::ULong hash (void); + virtual CORBA::ULong hash (); // = IIOP_Endpoint-specific methods. |