summaryrefslogtreecommitdiff
path: root/ACE/tests/Framework_Component_DLL.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Framework_Component_DLL.cpp')
-rw-r--r--ACE/tests/Framework_Component_DLL.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/tests/Framework_Component_DLL.cpp b/ACE/tests/Framework_Component_DLL.cpp
index 2d3f50c687b..ce70f65e65f 100644
--- a/ACE/tests/Framework_Component_DLL.cpp
+++ b/ACE/tests/Framework_Component_DLL.cpp
@@ -19,18 +19,18 @@
ACE_DLL_UNLOAD_POLICY (Framework_Component_DLL, ACE_DLL_UNLOAD_POLICY_LAZY)
-Simple_Service::Simple_Service (void)
+Simple_Service::Simple_Service ()
{
FRAMEWORK_COMPONENT_DLL_TRACE ("Simple_Service::Simple_Service");
}
-Simple_Service::~Simple_Service (void)
+Simple_Service::~Simple_Service ()
{
FRAMEWORK_COMPONENT_DLL_TRACE ("Simple_Service::~Simple_Service");
}
const ACE_TCHAR *
-Simple_Service::name (void)
+Simple_Service::name ()
{
FRAMEWORK_COMPONENT_DLL_TRACE ("Simple_Service::dll_name");
return ACE_TEXT ("Simple_Service");
@@ -55,7 +55,7 @@ public:
return 0;
}
- int fini (void)
+ int fini ()
{
FRAMEWORK_COMPONENT_DLL_TRACE ("Server_T::fini");
return 0;