summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_exception/cdr_op_cs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_exception/cdr_op_cs.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_exception/cdr_op_cs.cpp32
1 files changed, 15 insertions, 17 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_exception/cdr_op_cs.cpp b/TAO/TAO_IDL/be/be_visitor_exception/cdr_op_cs.cpp
index fe2f0d85230..dee2cc2c137 100644
--- a/TAO/TAO_IDL/be/be_visitor_exception/cdr_op_cs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_exception/cdr_op_cs.cpp
@@ -18,16 +18,13 @@
//
// ============================================================================
-#include "idl.h"
-#include "idl_extern.h"
-#include "be.h"
+ACE_RCSID (be_visitor_exception,
+ cdr_op_cs,
+ "$Id$")
-#include "be_visitor_exception.h"
-#include "be_visitor_field.h"
-
-ACE_RCSID(be_visitor_exception, cdr_op_cs, "$Id$")
-
-be_visitor_exception_cdr_op_cs::be_visitor_exception_cdr_op_cs (be_visitor_context *ctx)
+be_visitor_exception_cdr_op_cs::be_visitor_exception_cdr_op_cs (
+ be_visitor_context *ctx
+ )
: be_visitor_exception (ctx)
{
}
@@ -39,21 +36,22 @@ be_visitor_exception_cdr_op_cs::~be_visitor_exception_cdr_op_cs (void)
int
be_visitor_exception_cdr_op_cs::visit_exception (be_exception *node)
{
- if (node->cli_stub_cdr_op_gen () ||
- node->imported () ||
- node->is_local ())
- return 0;
+ if (node->cli_stub_cdr_op_gen ()
+ || node->imported ()
+ || node->is_local ())
+ {
+ return 0;
+ }
- // set the substate as generating code for the types defined in our
- // scope
this->ctx_->sub_state(TAO_CodeGen::TAO_CDR_SCOPE);
- // all we have to do is to visit the scope and generate code
+
if (this->visit_scope (node) == -1)
{
ACE_ERROR_RETURN ((LM_ERROR,
"(%N:%l) be_visitor_exception_cdr_op_cs::"
"visit_exception - "
- "codegen for scope failed\n"), -1);
+ "codegen for scope failed\n"),
+ -1);
}