diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-08 22:13:05 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-08 22:13:05 +0000 |
commit | b5ec4e124bc6d66f44d62ec3fa14e2797fdc91f0 (patch) | |
tree | 57bcfedd4d11eb571ed9eceb31bca9c852b45e39 /apps/Gateway | |
parent | 9c5d6d7af700601377c02e1d1769bf2d8f25377b (diff) | |
download | ATCD-b5ec4e124bc6d66f44d62ec3fa14e2797fdc91f0.tar.gz |
(bind_proxy,subscribe): wrapped final return statement with ACE_NOTREACHED, to please DU cxx 6.2
Diffstat (limited to 'apps/Gateway')
-rw-r--r-- | apps/Gateway/Gateway/Event_Channel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/Gateway/Gateway/Event_Channel.cpp b/apps/Gateway/Gateway/Event_Channel.cpp index c2a4a350c6f..57329337afa 100644 --- a/apps/Gateway/Gateway/Event_Channel.cpp +++ b/apps/Gateway/Gateway/Event_Channel.cpp @@ -457,7 +457,7 @@ Event_Channel::bind_proxy (Connection_Handler *connection_handler) /* NOTREACHED */ } - return 0; + ACE_NOTREACHED (return 0); } int @@ -493,7 +493,7 @@ Event_Channel::subscribe (const Event_Key &event_addr, /* NOTREACHED */ } - return 0; + ACE_NOTREACHED (return 0); } int |