diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-23 19:25:31 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-23 19:25:31 +0000 |
commit | 73916f01c763e28e9be0047a013a324618d180ce (patch) | |
tree | 5b60dceccf8d6352856c6e7523137db91dcff3bb /ace | |
parent | 9cfcfb1e0628133bb0988883ec0536069f3f8734 (diff) | |
download | ATCD-73916f01c763e28e9be0047a013a324618d180ce.tar.gz |
(ACE_Timer_Queue ctor): reordered initializers to match declaration order
Diffstat (limited to 'ace')
-rw-r--r-- | ace/Timer_Queue.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Timer_Queue.cpp b/ace/Timer_Queue.cpp index e7342315f4d..f6bf551df5e 100644 --- a/ace/Timer_Queue.cpp +++ b/ace/Timer_Queue.cpp @@ -111,8 +111,8 @@ ACE_Timer_Queue::dump (void) const ACE_Timer_Queue::ACE_Timer_Queue (ACE_Upcall_Strategy *upcall_strategy) : gettimeofday_ (ACE_OS::gettimeofday), - timer_skew_ (0, ACE_TIMER_SKEW), - upcall_strategy_ (upcall_strategy) + upcall_strategy_ (upcall_strategy), + timer_skew_ (0, ACE_TIMER_SKEW) { ACE_TRACE ("ACE_Timer_Queue::ACE_Timer_Queue"); } |