summaryrefslogtreecommitdiff
path: root/ace/Timer_List.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-10 15:57:25 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-10 15:57:25 +0000
commit746d56f483f89f2f337c49f25a45e3943345511d (patch)
treeaf9eee5e00f3ed28fdea4e050b8c3cc0dc56b032 /ace/Timer_List.cpp
parent99d629e8a6de18ac3c3890f983c65d393e4726c7 (diff)
downloadATCD-746d56f483f89f2f337c49f25a45e3943345511d.tar.gz
added timer_id_ initializer to constructor
Diffstat (limited to 'ace/Timer_List.cpp')
-rw-r--r--ace/Timer_List.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ace/Timer_List.cpp b/ace/Timer_List.cpp
index 75a398aca12..b8965303618 100644
--- a/ace/Timer_List.cpp
+++ b/ace/Timer_List.cpp
@@ -36,7 +36,8 @@ ACE_Timer_List::iter (void)
ACE_Timer_List::ACE_Timer_List (void)
: head_ (0),
- iterator_ (*this)
+ iterator_ (*this),
+ timer_id_ (0)
{
ACE_TRACE ("ACE_Timer_List::ACE_Timer_List");
}