summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-15 13:54:24 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-15 13:54:24 +0000
commitaf5e79a21d01d52650086d87e792a7b9a05b684b (patch)
tree811bb8235eb5a86ed92e4f5a447053e5fe9f0512
parent047c59093a0ba34b092633eb884e6da71588a9b8 (diff)
downloadATCD-af5e79a21d01d52650086d87e792a7b9a05b684b.tar.gz
(handle_input): removed ACE_NOTREACHED wrapper around return statement at end.
-rw-r--r--tests/Reactor_Exceptions_Test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Reactor_Exceptions_Test.cpp b/tests/Reactor_Exceptions_Test.cpp
index 63e79e4bcc5..ffad996b3e4 100644
--- a/tests/Reactor_Exceptions_Test.cpp
+++ b/tests/Reactor_Exceptions_Test.cpp
@@ -91,7 +91,7 @@ My_Handler::handle_input (ACE_HANDLE)
buf));
throw_exception ();
- ACE_NOTREACHED (return 0);
+ return 0;
}
class My_Reactor : public ACE_Reactor
@@ -106,7 +106,7 @@ public:
}
catch (...)
{
- ACE_DEBUG ((LM_DEBUG,
+ ACE_DEBUG ((LM_DEBUG,
" (%t) catch exception\n"));
ret = -1;
// do your thing, etc.
@@ -184,7 +184,7 @@ main (int argc, char *argv[])
handler.close ();
dgram.close ();
- ACE_DEBUG ((LM_DEBUG,
+ ACE_DEBUG ((LM_DEBUG,
" (%t) exiting main\n"));
#else
ACE_UNUSED_ARG (argc);