summaryrefslogtreecommitdiff
path: root/ACE/apps/Gateway/Gateway
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/Gateway/Gateway')
-rw-r--r--ACE/apps/Gateway/Gateway/Concrete_Connection_Handlers.h4
-rw-r--r--ACE/apps/Gateway/Gateway/Gateway.cpp2
2 files changed, 3 insertions, 3 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;