diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-14 16:18:35 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-14 16:18:35 +0000 |
commit | bfa48855f31ec670a7d70d38ca7fcb9fbde8372d (patch) | |
tree | 5aa7c1b7e2d970786855df707666979742708b10 /ace/Message_Queue_T.cpp | |
parent | 35981c8b99b5e45ab929c04b9212fc6b3771ec6e (diff) | |
download | ATCD-bfa48855f31ec670a7d70d38ca7fcb9fbde8372d.tar.gz |
(refresh_{late,pending}_queue): removed some breaks following
ACE_ERROR_RETURNs, to avoid compiler warnings about unreachable
statements.
Diffstat (limited to 'ace/Message_Queue_T.cpp')
-rw-r--r-- | ace/Message_Queue_T.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ace/Message_Queue_T.cpp b/ace/Message_Queue_T.cpp index 87686c5ae36..6eb16402c00 100644 --- a/ace/Message_Queue_T.cpp +++ b/ace/Message_Queue_T.cpp @@ -1447,7 +1447,6 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::refresh_pending_queue (const ACE_Time_ ASYS_TEXT ("Unknown message priority status [%d]"), (int) current_status), -1); - break; // switch } } @@ -1534,9 +1533,6 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::refresh_late_queue (const ACE_Time_Val "[%d] (expected LATE or BEYOND_LATE)"), (int) current_status), -1); - - break; // switch - default: // if we got here, something is *seriously* wrong with the queue @@ -1544,8 +1540,6 @@ ACE_Dynamic_Message_Queue<ACE_SYNCH_USE>::refresh_late_queue (const ACE_Time_Val ASYS_TEXT ("Unknown message priority status [%d]"), (int) current_status), -1); - - break; // switch } } |