diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-09-08 22:42:36 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-09-08 22:42:36 +0000 |
commit | 91410bf1b939156116a375e07898c90b873c8b74 (patch) | |
tree | d59aa48f339b445a5ea7cbd6cba779cd79515d3c /ace/Timer_Hash_T.cpp | |
parent | 4a6d7d29527bb76b1dd72056521b014a70a51642 (diff) | |
download | ATCD-91410bf1b939156116a375e07898c90b873c8b74.tar.gz |
The iter() method now returns a pointer to an iterator that is in a reset
state instead of an unknown one.
Diffstat (limited to 'ace/Timer_Hash_T.cpp')
-rw-r--r-- | ace/Timer_Hash_T.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ace/Timer_Hash_T.cpp b/ace/Timer_Hash_T.cpp index bdd0241fc3d..57d03557f3a 100644 --- a/ace/Timer_Hash_T.cpp +++ b/ace/Timer_Hash_T.cpp @@ -181,6 +181,7 @@ ACE_Timer_Hash_Iterator_T<TYPE, FUNCTOR, LOCK, BUCKET>::item (void) template <class TYPE, class FUNCTOR, class LOCK, class BUCKET> ACE_Timer_Queue_Iterator_T<TYPE, FUNCTOR, LOCK> & ACE_Timer_Hash_T<TYPE, FUNCTOR, LOCK, BUCKET>::iter (void) { + this->iterator_->first (); return *this->iterator_; } |