diff options
author | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-01 22:10:53 +0000 |
---|---|---|
committer | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-01 22:10:53 +0000 |
commit | 5d49ffd0bb13bcecef775d31f8724a1ecca834f5 (patch) | |
tree | b91886ec7699183d8fdf6afc0a866d61b0480653 /ace | |
parent | 71c748559e3310789a7a55f4965ba38175fc7b11 (diff) | |
download | ATCD-5d49ffd0bb13bcecef775d31f8724a1ecca834f5.tar.gz |
Added i++ ;)
Diffstat (limited to 'ace')
-rw-r--r-- | ace/Timer_Heap_T.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Timer_Heap_T.cpp b/ace/Timer_Heap_T.cpp index 90aa0b803a5..0b153647619 100644 --- a/ace/Timer_Heap_T.cpp +++ b/ace/Timer_Heap_T.cpp @@ -144,7 +144,7 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, LOCK>::~ACE_Timer_Heap_T (void) ACE_TRACE ("ACE_Timer_Heap::~ACE_Timer_Heap"); // Clean up all the nodes still in the queue - for (size_t i = 0; i < this->cur_size_; ) + for (size_t i = 0; i < this->cur_size_; i++) { this->upcall_functor ().deletion (*this, this->heap_[i]->get_type (), |