summaryrefslogtreecommitdiff
path: root/ACE/tests/Framework_Component_DLL.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 08:04:35 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 08:04:35 +0100
commit9027b24610848c0eb0d768b60b132ce9e09dee7d (patch)
treef2b313d8110861616f330776f20f1df0c348cc0b /ACE/tests/Framework_Component_DLL.cpp
parentcfb87b202043d9f6b5532f3e3e4e431f6ced4c0b (diff)
downloadATCD-9027b24610848c0eb0d768b60b132ce9e09dee7d.tar.gz
Removed redundant void
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;