summaryrefslogtreecommitdiff
path: root/ace/Timer_Queue.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-01-17 02:23:09 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-01-17 02:23:09 +0000
commitf498ec3072a4f20dbedadc2340592e24ed3301b7 (patch)
treea80d069160b1500ffdc3aa8c7d6430ba9ea9e23b /ace/Timer_Queue.cpp
parentc5f0eb74bf2cd44e94d5c403e92e258ff4939f24 (diff)
downloadATCD-f498ec3072a4f20dbedadc2340592e24ed3301b7.tar.gz
update
Diffstat (limited to 'ace/Timer_Queue.cpp')
-rw-r--r--ace/Timer_Queue.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Timer_Queue.cpp b/ace/Timer_Queue.cpp
index f41ef58ddaf..5566d1f3b2b 100644
--- a/ace/Timer_Queue.cpp
+++ b/ace/Timer_Queue.cpp
@@ -119,13 +119,13 @@ ACE_Timer_Queue::expire (const ACE_Time_Value &cur_time)
int number_of_timers_expired = 0;
- ACE_Timer_Queue_Iterator &iterator = this->iterator ();
+ ACE_Timer_Queue_Iterator &iter = this->iter ();
// Keep looping while there are timers remaining and the earliest
// timer is <= the <cur_time> passed in to the method.
for (ACE_Timer_Node *expired;
- iterator.next (expired, cur_time) != 0;
+ iter.next (expired, cur_time) != 0;
)
{
ACE_Event_Handler *handler =