summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3499_Regression/DLL_Service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_3499_Regression/DLL_Service.cpp')
-rw-r--r--TAO/tests/Bug_3499_Regression/DLL_Service.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/Bug_3499_Regression/DLL_Service.cpp b/TAO/tests/Bug_3499_Regression/DLL_Service.cpp
index a4df1715d6c..7f05a4ce4da 100644
--- a/TAO/tests/Bug_3499_Regression/DLL_Service.cpp
+++ b/TAO/tests/Bug_3499_Regression/DLL_Service.cpp
@@ -1,10 +1,10 @@
#include "DLL_Service.h"
-ACE_DLL_Service::ACE_DLL_Service (void)
+ACE_DLL_Service::ACE_DLL_Service ()
{
}
-ACE_DLL_Service::~ACE_DLL_Service (void)
+ACE_DLL_Service::~ACE_DLL_Service ()
{
}
@@ -13,12 +13,12 @@ int ACE_DLL_Service::init (int, ACE_TCHAR *[])
return 0;
}
-int ACE_DLL_Service::fini (void)
+int ACE_DLL_Service::fini ()
{
return 0;
}
-void ACE_DLL_Service::destroy (void)
+void ACE_DLL_Service::destroy ()
{
delete this;
}