diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-11-20 04:03:06 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-11-20 04:03:06 +0000 |
commit | 04208422af74d60888b4adc858e17aedb4796ae4 (patch) | |
tree | 873ec9b1049d37b87b8fdffe9c5573978de9cd36 /ace/Token.cpp | |
parent | 57f9f9ce114a97d947644bef94dc7e2889ffc6b8 (diff) | |
download | ATCD-04208422af74d60888b4adc858e17aedb4796ae4.tar.gz |
reordered initializations in Ace_Quer_Entry ctor to match declaration order
Diffstat (limited to 'ace/Token.cpp')
-rw-r--r-- | ace/Token.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Token.cpp b/ace/Token.cpp index 30cf2943169..748579be47c 100644 --- a/ace/Token.cpp +++ b/ace/Token.cpp @@ -22,9 +22,9 @@ ACE_Token::dump (void) const ACE_Token::ACE_Queue_Entry::ACE_Queue_Entry (ACE_Thread_Mutex &m, ACE_thread_t t_id) - : cv_ (m), - next_ (0), + : next_ (0), thread_id_ (t_id), + cv_ (m), runable_ (0) { ACE_TRACE ("ACE_Token::ACE_Queue_Entry::ACE_Queue_Entry"); |