Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / TAO_IDL / be / be_visitor_module / cdr_op.cpp
blob75c65619fd062c3b9dc0c0ff08ce71fa07a86147
2 //=============================================================================
3 /**
4 * @file cdr_op.cpp
6 * Visitor generating code for the CDR operators for types defined in Module's
7 * scope.
9 * @author Aniruddha Gokhale
11 //=============================================================================
13 #include "module.h"
15 be_visitor_module_cdr_op::be_visitor_module_cdr_op (be_visitor_context *ctx)
16 : be_visitor_module (ctx)
20 be_visitor_module_cdr_op::~be_visitor_module_cdr_op ()
24 int
25 be_visitor_module_cdr_op::visit_module (be_module *node)
27 if (this->visit_scope (node) == -1)
29 ACE_ERROR_RETURN ((LM_ERROR,
30 "(%N:%l) be_visitor_module_cdr_op::visit_module - "
31 "codegen for scope failed\n"),
32 -1);
35 return 0;