summaryrefslogtreecommitdiff
path: root/TAO/tests/ORB_Local_Config
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/ORB_Local_Config')
-rw-r--r--TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.h4
-rw-r--r--TAO/tests/ORB_Local_Config/Service_Dependency/Service_Config_DLL.h4
-rw-r--r--TAO/tests/ORB_Local_Config/Two_DLL_ORB/ORB_DLL.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.h b/TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.h
index 9b051ef7ac7..883d6c025a5 100644
--- a/TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.h
+++ b/TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.h
@@ -32,11 +32,11 @@ class DllOrb_Export DllOrb
virtual int init (int argc, ACE_TCHAR *argv[]);
- virtual int fini (void);
+ virtual int fini ();
// protected types and methods
protected:
- virtual int svc (void);
+ virtual int svc ();
// private methods and instance variables
private:
diff --git a/TAO/tests/ORB_Local_Config/Service_Dependency/Service_Config_DLL.h b/TAO/tests/ORB_Local_Config/Service_Dependency/Service_Config_DLL.h
index 2bf3b6eaa44..535972f7a3e 100644
--- a/TAO/tests/ORB_Local_Config/Service_Dependency/Service_Config_DLL.h
+++ b/TAO/tests/ORB_Local_Config/Service_Dependency/Service_Config_DLL.h
@@ -41,14 +41,14 @@ public:
virtual int init (int argc, ACE_TCHAR *argv[]);
/// Terminates object when dynamic unlinking occurs.
- virtual int fini (void);
+ virtual int fini ();
/// Run by a daemon thread.
/**
* Each thread will invoke the Service Configurator via this
* method unless the object is the "FINAL" object.
*/
- virtual int svc (void);
+ virtual int svc ();
private:
diff --git a/TAO/tests/ORB_Local_Config/Two_DLL_ORB/ORB_DLL.h b/TAO/tests/ORB_Local_Config/Two_DLL_ORB/ORB_DLL.h
index bb952ea1fca..4adee3cc6d7 100644
--- a/TAO/tests/ORB_Local_Config/Two_DLL_ORB/ORB_DLL.h
+++ b/TAO/tests/ORB_Local_Config/Two_DLL_ORB/ORB_DLL.h
@@ -91,7 +91,7 @@ public:
* Each thread will invoke the Service Configurator via this
* method unless the object is the "FINAL" object.
*/
- virtual int svc (void);
+ virtual int svc ();
private:
signed char is_server_;