summaryrefslogtreecommitdiff
path: root/ACE/ace/SOCK.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/SOCK.h')
-rw-r--r--ACE/ace/SOCK.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/SOCK.h b/ACE/ace/SOCK.h
index 8fa3942c4b1..62ef4b9121c 100644
--- a/ACE/ace/SOCK.h
+++ b/ACE/ace/SOCK.h
@@ -59,7 +59,7 @@ public:
* @return The result of closing the socket; 0 if the handle value
* was already ACE_INVALID_HANDLE.
*/
- int close (void);
+ int close ();
/// Return the local endpoint address in the referenced ACE_Addr.
/// Returns 0 if successful, else -1.
@@ -73,7 +73,7 @@ public:
int get_remote_addr (ACE_Addr &) const;
/// Dump the state of an object.
- void dump (void) const;
+ void dump () const;
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;
@@ -114,7 +114,7 @@ protected:
/// Default constructor is protected to prevent instances of this class
/// from being defined.
- ACE_SOCK (void);
+ ACE_SOCK ();
/// Protected destructor.
/**
@@ -122,7 +122,7 @@ protected:
* operator delete() from being called through a base class ACE_SOCK
* pointer/reference.
*/
- ~ACE_SOCK (void);
+ ~ACE_SOCK ();
};
ACE_END_VERSIONED_NAMESPACE_DECL