summaryrefslogtreecommitdiff
path: root/ACE/tests/DLL_Test_Parent.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-06-22 14:24:35 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-06-22 14:24:35 +0200
commit16b803df3f89ccbaab85bc75c8950fd3f891f5db (patch)
treef9eb30a6569bcc89f05153f43cb66419b6b130db /ACE/tests/DLL_Test_Parent.h
parentbcd7675d8dd8a4821981fc4afc619c54bc9125b5 (diff)
downloadATCD-16b803df3f89ccbaab85bc75c8950fd3f891f5db.tar.gz
Use override, removed redundant void
* ACE/tests/DLL_Test.h: * ACE/tests/DLL_Test_Impl.h: * ACE/tests/DLL_Test_Parent.h:
Diffstat (limited to 'ACE/tests/DLL_Test_Parent.h')
-rw-r--r--ACE/tests/DLL_Test_Parent.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/ACE/tests/DLL_Test_Parent.h b/ACE/tests/DLL_Test_Parent.h
index d45dc64bf62..62e29781912 100644
--- a/ACE/tests/DLL_Test_Parent.h
+++ b/ACE/tests/DLL_Test_Parent.h
@@ -22,11 +22,9 @@
class DLL_Test_Parent_Export Parent
{
public:
+ virtual ~Parent ();
- virtual ~Parent (void);
-
- virtual void test (void);
-
+ virtual void test ();
};
#endif /* ACE_TESTS_DLL_TEST_PARENT_H */