summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Endpoint.h
diff options
context:
space:
mode:
authorKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
committerKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
commit3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch)
tree379c29e09bf55597fe6740cd163478cd1204a181 /TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Endpoint.h
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Endpoint.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Endpoint.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Endpoint.h b/TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Endpoint.h
index 8094f89ca66..dfb459d35d7 100644
--- a/TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Endpoint.h
+++ b/TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Endpoint.h
@@ -48,7 +48,7 @@ namespace TAO
friend class TAO_SSLIOP_Profile;
/// Default constructor.
- Endpoint (void);
+ Endpoint ();
/// Constructor. This is the most efficient constructor since it
/// does not require any address resolution processing.
@@ -67,24 +67,24 @@ namespace TAO
const char *htid);
/// Destructor.
- ~Endpoint (void);
+ ~Endpoint ();
// = Implementation of abstract TAO_Endpoint methods. See
// Endpoint.h for their documentation.
- virtual TAO_Endpoint *next (void);
+ virtual TAO_Endpoint *next ();
virtual int addr_to_string (char *buffer, size_t length);
- virtual void reset_hint (void);
+ virtual void reset_hint ();
/// Makes a copy of <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.
CORBA::Boolean is_equivalent (const TAO_Endpoint *other_endpoint);
/// Return a hash value for this object.
- CORBA::ULong hash (void);
+ CORBA::ULong hash ();
// Allocates memory and returns a copy of <this>
@@ -115,7 +115,7 @@ namespace TAO
/// This object maintains ownership of this string.
const char *htid (const char *h);
- //Connection_Handler *&hint (void);
+ //Connection_Handler *&hint ();
// Access to our <hint_>.
private: