diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-05-04 22:05:57 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-05-04 22:05:57 +0000 |
commit | ab19ac45d182225dcc99bb26692fdc5c1a23b2c6 (patch) | |
tree | fede1668935d2b7eb674eea741c54d6f2dd13743 /ace/Timer_Queue_T.cpp | |
parent | 9d603c20f7f8fe88de6493efbe0ecc42e3922f7d (diff) | |
download | ATCD-ab19ac45d182225dcc99bb26692fdc5c1a23b2c6.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Timer_Queue_T.cpp')
-rw-r--r-- | ace/Timer_Queue_T.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Timer_Queue_T.cpp b/ace/Timer_Queue_T.cpp index 41f8f444227..986c08a9777 100644 --- a/ace/Timer_Queue_T.cpp +++ b/ace/Timer_Queue_T.cpp @@ -168,12 +168,12 @@ ACE_Timer_Queue_T<TYPE, FUNCTOR>::expire (const ACE_Time_Value &cur_time) int number_of_timers_expired = 0; - ITERATOR &iter = this->iter (); + ACE_Timer_Node_T<TYPE, FUNCTOR> *expired; // Keep looping while there are timers remaining and the earliest // timer is <= the <cur_time> passed in to the method. - for (ACE_Timer_Node_T<TYPE, FUNCTOR> *expired; + for (ITERATOR &iter = this->iter (); iter.next (expired, cur_time) != 0; ) { |