summaryrefslogtreecommitdiff
path: root/ACE/tests/Reactor_Dispatch_Order_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Reactor_Dispatch_Order_Test.cpp')
-rw-r--r--ACE/tests/Reactor_Dispatch_Order_Test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/tests/Reactor_Dispatch_Order_Test.cpp b/ACE/tests/Reactor_Dispatch_Order_Test.cpp
index 8c5e63e565c..eb6e9595b68 100644
--- a/ACE/tests/Reactor_Dispatch_Order_Test.cpp
+++ b/ACE/tests/Reactor_Dispatch_Order_Test.cpp
@@ -102,7 +102,7 @@ int
Handler::handle_timeout (const ACE_Time_Value &,
const void *)
{
- int me = this->dispatch_order_++;
+ int const me = this->dispatch_order_++;
if (me != 1)
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("handle_timeout should be #1; it's %d\n"),
@@ -116,7 +116,7 @@ Handler::handle_timeout (const ACE_Time_Value &,
int
Handler::handle_output (ACE_HANDLE)
{
- int me = this->dispatch_order_++;
+ int const me = this->dispatch_order_++;
if (me != 2)
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("handle_output should be #2; it's %d\n"),
@@ -138,7 +138,7 @@ Handler::handle_output (ACE_HANDLE)
int
Handler::handle_input (ACE_HANDLE fd)
{
- int me = this->dispatch_order_++;
+ int const me = this->dispatch_order_++;
if (me != 3)
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("handle_input should be #3; it's %d\n"),