summaryrefslogtreecommitdiff
path: root/ACE/ace/UNIX_Addr.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 11:49:28 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 11:49:28 +0100
commit3a135b20e2c3c3dd407b9b768a411645eca6a7e0 (patch)
tree71301b1d02a56c2137c4e4c1b378aea4acd139a7 /ACE/ace/UNIX_Addr.h
parent199259c5d2d5f4a6550382a683f5d54ac482fcd1 (diff)
downloadATCD-3a135b20e2c3c3dd407b9b768a411645eca6a7e0.tar.gz
Various cleanup and use of C++11 features
Diffstat (limited to 'ACE/ace/UNIX_Addr.h')
-rw-r--r--ACE/ace/UNIX_Addr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/UNIX_Addr.h b/ACE/ace/UNIX_Addr.h
index 255832d51b3..fed5df7fab6 100644
--- a/ACE/ace/UNIX_Addr.h
+++ b/ACE/ace/UNIX_Addr.h
@@ -38,7 +38,7 @@ class ACE_Export ACE_UNIX_Addr : public ACE_Addr
{
public:
/// Default constructor.
- ACE_UNIX_Addr (void);
+ ACE_UNIX_Addr ();
/// Copy constructor.
ACE_UNIX_Addr (const ACE_UNIX_Addr &sa);
@@ -59,7 +59,7 @@ public:
int set (const sockaddr_un *, int len);
/// Return a pointer to the underlying network address.
- virtual void *get_addr (void) const;
+ virtual void *get_addr () const;
/// Set a pointer to the underlying network address.
virtual void set_addr (const void *addr, int len);
@@ -85,10 +85,10 @@ public:
bool operator != (const ACE_UNIX_Addr &SAP) const;
/// Return the path name of the underlying rendezvous point.
- const char *get_path_name (void) const;
+ const char *get_path_name () const;
/// Computes and returns hash value.
- virtual u_long hash (void) const;
+ virtual u_long hash () const;
/// Dump the state of an object.
void dump () const;