summaryrefslogtreecommitdiff
path: root/ace/Timer_Wheel_T.cpp
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-28 23:08:34 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-28 23:08:34 +0000
commit21a094f19a316f77f18c3ab7c259394c573e403f (patch)
tree32e6edce13c2c6148c10c64d3542758c43e2735c /ace/Timer_Wheel_T.cpp
parent5cda53835f72ae73c024bfff69571296e7ea4da3 (diff)
downloadATCD-21a094f19a316f77f18c3ab7c259394c573e403f.tar.gz
Changed the behavior of the iterator to automatically initialize when the
iterator is constructed.
Diffstat (limited to 'ace/Timer_Wheel_T.cpp')
-rw-r--r--ace/Timer_Wheel_T.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ace/Timer_Wheel_T.cpp b/ace/Timer_Wheel_T.cpp
index 2eb936e1bea..86dee8a4356 100644
--- a/ace/Timer_Wheel_T.cpp
+++ b/ace/Timer_Wheel_T.cpp
@@ -15,6 +15,7 @@ template <class TYPE, class FUNCTOR, class LOCK>
ACE_Timer_Wheel_Iterator_T<TYPE, FUNCTOR, LOCK>::ACE_Timer_Wheel_Iterator_T (ACE_Timer_Wheel_T<TYPE, FUNCTOR, LOCK> &wheel)
: timer_wheel_ (wheel)
{
+ this->first();
// Nothing
}