diff options
Diffstat (limited to 'ace/Message_Queue.cpp')
-rw-r--r-- | ace/Message_Queue.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Message_Queue.cpp b/ace/Message_Queue.cpp index 30b8a77abaa..20d528dd1f6 100644 --- a/ace/Message_Queue.cpp +++ b/ace/Message_Queue.cpp @@ -39,8 +39,8 @@ ACE_Message_Queue<ACE_SYNCH_2>::dump (void) const template <ACE_SYNCH_1> ACE_Message_Queue<ACE_SYNCH_2>::ACE_Message_Queue (size_t hwm, size_t lwm) - : notfull_cond_ (this->lock_), - notempty_cond_ (this->lock_) + : notempty_cond_ (this->lock_), + notfull_cond_ (this->lock_) { ACE_TRACE ("ACE_Message_Queue<ACE_SYNCH_2>::ACE_Message_Queue"); if (this->open (hwm, lwm) == -1) |