summaryrefslogtreecommitdiff
path: root/ACE/ace
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace')
-rw-r--r--ACE/ace/Asynch_Pseudo_Task.h2
-rw-r--r--ACE/ace/Connector.h2
-rw-r--r--ACE/ace/Event_Handler.h1
-rw-r--r--ACE/ace/NT_Service.h6
-rw-r--r--ACE/ace/Naming_Context.h2
-rw-r--r--ACE/ace/Registry.h24
-rw-r--r--ACE/ace/SSL/SSL_Initializer.h2
-rw-r--r--ACE/ace/Service_Manager.h2
-rw-r--r--ACE/ace/Timer_Queue_Adapters.h2
9 files changed, 21 insertions, 22 deletions
diff --git a/ACE/ace/Asynch_Pseudo_Task.h b/ACE/ace/Asynch_Pseudo_Task.h
index 804b9edab0c..0e311721a9d 100644
--- a/ACE/ace/Asynch_Pseudo_Task.h
+++ b/ACE/ace/Asynch_Pseudo_Task.h
@@ -48,7 +48,7 @@ public:
int suspend_io_handler (ACE_HANDLE handle);
protected:
- virtual int svc (void);
+ virtual int svc ();
/// Should be initialized before reactor_
ACE_Select_Reactor select_reactor_;
diff --git a/ACE/ace/Connector.h b/ACE/ace/Connector.h
index 3af48b4d44b..cb98eb22183 100644
--- a/ACE/ace/Connector.h
+++ b/ACE/ace/Connector.h
@@ -356,7 +356,7 @@ protected:
virtual int init (int argc, ACE_TCHAR *argv[]);
/// Calls handle_close() to shutdown the Connector gracefully.
- virtual int fini (void);
+ virtual int fini ();
/// Default version returns address info in @a buf.
virtual int info (ACE_TCHAR **strp, size_t length) const;
diff --git a/ACE/ace/Event_Handler.h b/ACE/ace/Event_Handler.h
index ae23e7e82a4..aef70d591ae 100644
--- a/ACE/ace/Event_Handler.h
+++ b/ACE/ace/Event_Handler.h
@@ -228,7 +228,6 @@ public:
*/
class ACE_Export Policy
{
-
public:
/// Virtual destructor.
diff --git a/ACE/ace/NT_Service.h b/ACE/ace/NT_Service.h
index 6e03aabd6b2..e1b03990333 100644
--- a/ACE/ace/NT_Service.h
+++ b/ACE/ace/NT_Service.h
@@ -126,7 +126,7 @@ public:
* ACE_Shared_Object. Default implementation sets the service status
* to SERVICE_STOPPED.
*/
- virtual int fini (void);
+ virtual int fini ();
/**
* The actual service implementation. This function need not be overridden
@@ -134,7 +134,7 @@ public:
* by subclasses when actually running the service. It is expected that
* this function will set the status to RUNNING.
*/
- virtual int svc (void);
+ virtual int svc ();
/**
* This function is called in response to a request from the Service
@@ -147,7 +147,7 @@ public:
* SERVICE_CONTROL_INTERROGATE: reports current status
* SERVICE_CONTROL_SHUTDOWN: same as SERVICE_CONTROL_STOP.
*/
- virtual void handle_control (DWORD control_code);
+ virtual void handle_control (DWORD control_code);
/// Set the svc_handle_ member. This is only a public function because
/// the macro-generated service function calls it.
diff --git a/ACE/ace/Naming_Context.h b/ACE/ace/Naming_Context.h
index 38349b28069..35bafa2ffee 100644
--- a/ACE/ace/Naming_Context.h
+++ b/ACE/ace/Naming_Context.h
@@ -102,7 +102,7 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
/// Close down the test when dynamically unlinked.
- virtual int fini (void);
+ virtual int fini ();
/// Returns information about this context.
virtual int info (ACE_TCHAR **strp, size_t length) const;
diff --git a/ACE/ace/Registry.h b/ACE/ace/Registry.h
index afdf775b6ea..d21dfef8e7f 100644
--- a/ACE/ace/Registry.h
+++ b/ACE/ace/Registry.h
@@ -489,20 +489,20 @@ public:
};
class ACE_Export Context_Iteration : public Iteration_State
- {
- public:
- /// Next @a how_many entries
- int next_n (u_long how_many,
- Binding_List &list);
- };
+ {
+ public:
+ /// Next @a how_many entries
+ int next_n (u_long how_many,
+ Binding_List &list);
+ };
class ACE_Export Iteration_Complete : public Iteration_State
- {
- public:
- /// Next @a how_many entries
- int next_n (u_long how_many,
- Binding_List &list);
- };
+ {
+ public:
+ /// Next @a how_many entries
+ int next_n (u_long how_many,
+ Binding_List &list);
+ };
/// Friend states
friend class Iteration_State;
diff --git a/ACE/ace/SSL/SSL_Initializer.h b/ACE/ace/SSL/SSL_Initializer.h
index d73c8f88aed..a19b780523b 100644
--- a/ACE/ace/SSL/SSL_Initializer.h
+++ b/ACE/ace/SSL/SSL_Initializer.h
@@ -35,7 +35,7 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
/// Do cleanup of SSL library.
- virtual int fini (void);
+ virtual int fini ();
};
static int ACE_Force_ACE_SSL_Initializer = ACE_SSL_Initializer::static_init ();
diff --git a/ACE/ace/Service_Manager.h b/ACE/ace/Service_Manager.h
index 58ed34e6042..eda5f3f0163 100644
--- a/ACE/ace/Service_Manager.h
+++ b/ACE/ace/Service_Manager.h
@@ -73,7 +73,7 @@ protected:
// = Dynamic linking hooks.
virtual int init (int argc, ACE_TCHAR *argv[]);
virtual int info (ACE_TCHAR **info_string, size_t length) const;
- virtual int fini (void);
+ virtual int fini ();
// = Scheduling hooks.
virtual int suspend (void);
diff --git a/ACE/ace/Timer_Queue_Adapters.h b/ACE/ace/Timer_Queue_Adapters.h
index 0ba8dc2f0b7..56351b7172b 100644
--- a/ACE/ace/Timer_Queue_Adapters.h
+++ b/ACE/ace/Timer_Queue_Adapters.h
@@ -152,7 +152,7 @@ public:
int cancel (long timer_id, const void **act = 0);
/// Runs the dispatching thread.
- virtual int svc (void);
+ virtual int svc ();
/// Inform the dispatching thread that it should terminate.
virtual void deactivate (void);