summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-29 04:26:24 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-29 04:26:24 +0000
commit1ade588f889eb122bce5abbb549cd25f0bbc57fe (patch)
tree5c17706521f7a56c191e4ce19b036404dad2695c
parentcb8929d535022f032a4d12b277ed92f36f7efef5 (diff)
downloadATCD-1ade588f889eb122bce5abbb549cd25f0bbc57fe.tar.gz
(visit_enum): removed ACE_NOTREACHED wrapper fron final return statement, because it's reachable
-rw-r--r--TAO/TAO_IDL/be/be_visitor_enum/any_op_cs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_enum/any_op_cs.cpp b/TAO/TAO_IDL/be/be_visitor_enum/any_op_cs.cpp
index a2e0525abed..55161754a49 100644
--- a/TAO/TAO_IDL/be/be_visitor_enum/any_op_cs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_enum/any_op_cs.cpp
@@ -96,7 +96,7 @@ be_visitor_enum_any_op_cs::visit_enum (be_enum *node)
<< "return 0;" << be_uidt_nl
<< "}" << be_nl
<< "TAO_ENDTRY;" << be_nl
- << "ACE_NOTREACHED (return 0);" << be_uidt_nl
+ << "return 0;" << be_uidt_nl
<< "}\n\n";
node->cli_stub_any_op_gen (1);