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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/SOCK.h b/ACE/ace/SOCK.h
index 853c6a483f6..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.
@@ -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