summaryrefslogtreecommitdiff
path: root/ACE/apps/Gateway
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 13:31:46 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 13:31:46 +0100
commit317dd62b7112b590efe99283ceb4b2e5e5649884 (patch)
tree4df9cfc065c67e616010437b483dd97d2aba717b /ACE/apps/Gateway
parent60d97734bef3939bb7ed54170fbcf9a1b459b496 (diff)
downloadATCD-317dd62b7112b590efe99283ceb4b2e5e5649884.tar.gz
Documentation, layout, C++11 changes
Diffstat (limited to 'ACE/apps/Gateway')
-rw-r--r--ACE/apps/Gateway/Gateway/Concrete_Connection_Handlers.h4
-rw-r--r--ACE/apps/Gateway/Gateway/Gateway.cpp2
-rw-r--r--ACE/apps/Gateway/Peer/Peer.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/ACE/apps/Gateway/Gateway/Concrete_Connection_Handlers.h b/ACE/apps/Gateway/Gateway/Concrete_Connection_Handlers.h
index 43a0111041d..1e21542d46d 100644
--- a/ACE/apps/Gateway/Gateway/Concrete_Connection_Handlers.h
+++ b/ACE/apps/Gateway/Gateway/Concrete_Connection_Handlers.h
@@ -107,7 +107,7 @@ protected:
virtual int handle_input (ACE_HANDLE);
/// Transmit peer messages.
- virtual int svc (void);
+ virtual int svc ();
/**
* When thread started, connection become blocked, so no need to use
@@ -149,7 +149,7 @@ protected:
ACE_Reactor_Mask = ACE_Event_Handler::ALL_EVENTS_MASK);
/// Transmit peer messages.
- virtual int svc (void);
+ virtual int svc ();
private:
/// If the controlling is in thread's svc() or not.
diff --git a/ACE/apps/Gateway/Gateway/Gateway.cpp b/ACE/apps/Gateway/Gateway/Gateway.cpp
index a443ccde4df..0aa586c6fc8 100644
--- a/ACE/apps/Gateway/Gateway/Gateway.cpp
+++ b/ACE/apps/Gateway/Gateway/Gateway.cpp
@@ -23,7 +23,7 @@ protected:
virtual int init (int argc, ACE_TCHAR *argv[]);
// Perform initialization.
- virtual int fini (void);
+ virtual int fini ();
// Perform termination when unlinked dynamically.
virtual int info (ACE_TCHAR **, size_t) const;
diff --git a/ACE/apps/Gateway/Peer/Peer.h b/ACE/apps/Gateway/Peer/Peer.h
index 9bf0c91dbb2..2cc6c0da1b1 100644
--- a/ACE/apps/Gateway/Peer/Peer.h
+++ b/ACE/apps/Gateway/Peer/Peer.h
@@ -236,7 +236,7 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
/// Perform termination activities.
- virtual int fini (void);
+ virtual int fini ();
/// Return info about this service.
virtual int info (ACE_TCHAR **, size_t) const;