summaryrefslogtreecommitdiff
path: root/ACE/tests/Thread_Attrs_Test.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/Thread_Attrs_Test.cpp
parentcfb87b202043d9f6b5532f3e3e4e431f6ced4c0b (diff)
downloadATCD-9027b24610848c0eb0d768b60b132ce9e09dee7d.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/tests/Thread_Attrs_Test.cpp')
-rw-r--r--ACE/tests/Thread_Attrs_Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/tests/Thread_Attrs_Test.cpp b/ACE/tests/Thread_Attrs_Test.cpp
index 8a6f4317e11..9fc26475fae 100644
--- a/ACE/tests/Thread_Attrs_Test.cpp
+++ b/ACE/tests/Thread_Attrs_Test.cpp
@@ -27,7 +27,7 @@ public:
//FUZZ: enable check_for_lack_ACE_OS
// Check the cancel settings against what is expected then exit.
- virtual int svc (void);
+ virtual int svc ();
/// Returns true iff settings match what was requested.
bool operator! ();
@@ -50,7 +50,7 @@ Cancel_Check::Cancel_Check (bool enable, bool async)
}
int
-Cancel_Check::svc (void)
+Cancel_Check::svc ()
{
#if defined (ACE_HAS_PTHREADS) && !defined (ACE_LACKS_PTHREAD_CANCEL)
int state;
@@ -136,7 +136,7 @@ public:
//FUZZ: enable check_for_lack_ACE_OS
/// Check the stack size against what is expected then exit.
- virtual int svc (void);
+ virtual int svc ();
/// Returns true iff failed_ == false.
bool operator! ();
@@ -160,7 +160,7 @@ Stack_Size_Check::Stack_Size_Check (size_t stack_size)
}
int
-Stack_Size_Check::svc (void)
+Stack_Size_Check::svc ()
{
size_t my_size = 0;