summaryrefslogtreecommitdiff
path: root/ACE/tests/Thread_Attrs_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Thread_Attrs_Test.cpp')
-rw-r--r--ACE/tests/Thread_Attrs_Test.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/tests/Thread_Attrs_Test.cpp b/ACE/tests/Thread_Attrs_Test.cpp
index 8a6f4317e11..3f70624918c 100644
--- a/ACE/tests/Thread_Attrs_Test.cpp
+++ b/ACE/tests/Thread_Attrs_Test.cpp
@@ -23,11 +23,11 @@ public:
//FUZZ: disable check_for_lack_ACE_OS
// Spawn the thread
- virtual int open (void * = 0);
+ int open (void * = 0) override;
//FUZZ: enable check_for_lack_ACE_OS
// Check the cancel settings against what is expected then exit.
- virtual int svc (void);
+ int svc () override;
/// 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;
@@ -132,11 +132,11 @@ public:
//FUZZ: disable check_for_lack_ACE_OS
/// Spawn the thread
- virtual int open (void * = 0);
+ int open (void * = 0) override;
//FUZZ: enable check_for_lack_ACE_OS
/// Check the stack size against what is expected then exit.
- virtual int svc (void);
+ int svc () override;
/// 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;