summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-14 13:36:12 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-14 13:36:12 +0100
commit5554df067e071f05d12906ad7c061e23b28dc81b (patch)
tree7db9db1f81843daf674c1d14f4aa45cb3bb68017 /ACE
parent2d0860a78e703c71e38d6f83b2cdb33d94f9ab9c (diff)
downloadATCD-5554df067e071f05d12906ad7c061e23b28dc81b.tar.gz
Remove redundant void
Diffstat (limited to 'ACE')
-rw-r--r--ACE/ace/TLI_Acceptor.h4
-rw-r--r--ACE/ace/TLI_Stream.h8
-rw-r--r--ACE/ace/Trace.h6
3 files changed, 9 insertions, 9 deletions
diff --git a/ACE/ace/TLI_Acceptor.h b/ACE/ace/TLI_Acceptor.h
index 43e9bf055fc..11a3856443f 100644
--- a/ACE/ace/TLI_Acceptor.h
+++ b/ACE/ace/TLI_Acceptor.h
@@ -46,7 +46,7 @@ public:
friend class ACE_Request_Queue;
/// Default constructor.
- ACE_TLI_Acceptor (void);
+ ACE_TLI_Acceptor ();
/// Initiate a passive mode socket.
ACE_TLI_Acceptor (const ACE_Addr &remote_sap,
@@ -65,7 +65,7 @@ public:
const char device[] = ACE_TLI_TCP_DEVICE);
/// Close down the acceptor and release resources.
- int close (void);
+ int close ();
// = Passive connection acceptance method.
diff --git a/ACE/ace/TLI_Stream.h b/ACE/ace/TLI_Stream.h
index 0752544d5b1..0df08505322 100644
--- a/ACE/ace/TLI_Stream.h
+++ b/ACE/ace/TLI_Stream.h
@@ -41,18 +41,18 @@ public:
friend class ACE_TLI_Connector;
/// Default constructor.
- ACE_TLI_Stream (void);
+ ACE_TLI_Stream ();
// = TLI-specific shutdown operations.
/// Close down and release resources.
- int close (void);
+ int close ();
/// Send a release and then await the release from the other side.
- int active_close (void);
+ int active_close ();
/// Acknowledge the release from the other side and then send the
/// release to the other side.
- int passive_close (void);
+ int passive_close ();
/// Return address of remotely connected peer.
int get_remote_addr (ACE_Addr &) const;
diff --git a/ACE/ace/Trace.h b/ACE/ace/Trace.h
index fb95a57a6d5..0d878c660ca 100644
--- a/ACE/ace/Trace.h
+++ b/ACE/ace/Trace.h
@@ -49,13 +49,13 @@ public:
// = Control the tracing level.
/// Determine if tracing is enabled or not
- static bool is_tracing(void);
+ static bool is_tracing();
/// Enable the tracing facility.
- static void start_tracing (void);
+ static void start_tracing ();
/// Disable the tracing facility.
- static void stop_tracing (void);
+ static void stop_tracing ();
/// Change the nesting indentation level.
static void set_nesting_indent (int indent);