summaryrefslogtreecommitdiff
path: root/tests/Recursive_Condition_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Recursive_Condition_Test.cpp')
-rw-r--r--tests/Recursive_Condition_Test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Recursive_Condition_Test.cpp b/tests/Recursive_Condition_Test.cpp
index a3e82d52aea..02643995d7c 100644
--- a/tests/Recursive_Condition_Test.cpp
+++ b/tests/Recursive_Condition_Test.cpp
@@ -47,9 +47,9 @@ public:
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) Test_Handler::handle_timeout\n")));
++this->nr_expirations_;
- void *nc_arg = ACE_const_cast (void *, arg);
+ void *nc_arg = const_cast<void *> (arg);
Thread_Timer_Queue *timer_queue =
- ACE_reinterpret_cast (Thread_Timer_Queue *, nc_arg);
+ reinterpret_cast<Thread_Timer_Queue *> (nc_arg);
ACE_Time_Value timeout = ACE_OS::gettimeofday () + ACE_Time_Value (1, 0);