summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_union_branch/public_ch.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-01-04 14:25:42 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-01-04 14:25:42 +0000
commite48ee77d9dcfb38c7301b8a77f9ea4efc3779b30 (patch)
treeb8a1df22e69c325886192da61414f8054923e83c /TAO/TAO_IDL/be/be_visitor_union_branch/public_ch.cpp
parentae826a0cb4d5404fcd6ce35f0aaa1030cde1e55f (diff)
downloadATCD-e48ee77d9dcfb38c7301b8a77f9ea4efc3779b30.tar.gz
Mon Jan 4 14:25:39 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO_IDL/be/be_visitor_argument/argument.cpp * TAO_IDL/be/be_visitor_argument/vardecl_ss.cpp * TAO_IDL/be/be_visitor_array/array.cpp * TAO_IDL/be/be_visitor_component/component_cs.cpp * TAO_IDL/be/be_visitor_exception/exception_ctor.cpp * TAO_IDL/be/be_visitor_field/field_ch.cpp * TAO_IDL/be/be_visitor_home/home_ex_idl.cpp * TAO_IDL/be/be_visitor_interface/interface_cs.cpp * TAO_IDL/be/be_visitor_interface/smart_proxy_ch.cpp * TAO_IDL/be/be_visitor_operation/ami_cs.cpp * TAO_IDL/be/be_visitor_operation/ami_handler_reply_stub_operation_cs.cpp * TAO_IDL/be/be_visitor_operation/remote_proxy_impl_cs.cpp * TAO_IDL/be/be_visitor_operation/rettype.cpp * TAO_IDL/be/be_visitor_sequence/buffer_type.cpp * TAO_IDL/be/be_visitor_sequence/sequence_base.cpp * TAO_IDL/be/be_visitor_structure/any_op_ch.cpp * TAO_IDL/be/be_visitor_typedef/any_op_ch.cpp * TAO_IDL/be/be_visitor_typedef/any_op_cs.cpp * TAO_IDL/be/be_visitor_typedef/cdr_op_ch.cpp * TAO_IDL/be/be_visitor_typedef/cdr_op_cs.cpp * TAO_IDL/be/be_visitor_typedef/serializer_op_ch.cpp * TAO_IDL/be/be_visitor_typedef/serializer_op_cs.cpp * TAO_IDL/be/be_visitor_typedef/typedef_ch.cpp * TAO_IDL/be/be_visitor_typedef/typedef_ci.cpp * TAO_IDL/be/be_visitor_typedef/typedef_cs.cpp * TAO_IDL/be/be_visitor_union/discriminant_ch.cpp * TAO_IDL/be/be_visitor_union/discriminant_ci.cpp * TAO_IDL/be/be_visitor_union/discriminant_cs.cpp * TAO_IDL/be/be_visitor_union_branch/private_ch.cpp * TAO_IDL/be/be_visitor_union_branch/public_assign_cs.cpp * TAO_IDL/be/be_visitor_union_branch/public_ch.cpp * TAO_IDL/be/be_visitor_union_branch/public_ci.cpp * TAO_IDL/be/be_visitor_union_branch/public_constructor_cs.cpp * TAO_IDL/be/be_visitor_union_branch/public_reset_cs.cpp * TAO_IDL/be/be_visitor_valuebox/field_ch.cpp * TAO_IDL/be/be_visitor_valuebox/field_ci.cpp * TAO_IDL/be/be_visitor_valuebox/union_member_ci.cpp * TAO_IDL/be/be_visitor_valuebox/valuebox_ci.cpp * TAO_IDL/be/be_visitor_valuetype/field_ch.cpp * TAO_IDL/be/be_visitor_valuetype/field_ci.cpp * TAO_IDL/be/be_visitor_valuetype/field_cs.cpp Initialise pointer with 0
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_union_branch/public_ch.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_union_branch/public_ch.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_union_branch/public_ch.cpp b/TAO/TAO_IDL/be/be_visitor_union_branch/public_ch.cpp
index 5bb3f5c14fa..01f91516988 100644
--- a/TAO/TAO_IDL/be/be_visitor_union_branch/public_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_union_branch/public_ch.cpp
@@ -73,7 +73,7 @@ be_visitor_union_branch_public_ch::visit_array (be_array *node)
{
be_decl *ub = this->ctx_->node ();
be_decl *bu = this->ctx_->scope ();
- be_type *bt;
+ be_type *bt = 0;
// Check if we are visiting this via a visit to a typedef node.
if (this->ctx_->alias ())
@@ -155,7 +155,7 @@ be_visitor_union_branch_public_ch::visit_enum (be_enum *node)
{
be_decl *ub = this->ctx_->node ();
be_decl *bu = this->ctx_->scope ();
- be_type *bt;
+ be_type *bt = 0;
// Check if we are visiting this via a visit to a typedef node.
if (this->ctx_->alias ())
@@ -217,7 +217,7 @@ be_visitor_union_branch_public_ch::visit_interface (be_interface *node)
{
be_decl *ub = this->ctx_->node ();
be_decl *bu = this->ctx_->scope ();
- be_type *bt;
+ be_type *bt = 0;
// Check if we are visiting this via a visit to a typedef node.
if (this->ctx_->alias ())
@@ -260,7 +260,7 @@ be_visitor_union_branch_public_ch::visit_interface_fwd (be_interface_fwd *node)
{
be_decl *ub = this->ctx_->node ();
be_decl *bu = this->ctx_->scope ();
- be_type *bt;
+ be_type *bt = 0;
// Check if we are visiting this via a visit to a typedef node.
if (this->ctx_->alias ())
@@ -303,7 +303,7 @@ be_visitor_union_branch_public_ch::visit_valuebox (be_valuebox *node)
{
be_decl *ub = this->ctx_->node ();
be_decl *bu = this->ctx_->scope ();
- be_type *bt;
+ be_type *bt = 0;
// Check if we are visiting this via a visit to a typedef node.
if (this->ctx_->alias ())
@@ -346,7 +346,7 @@ be_visitor_union_branch_public_ch::visit_valuetype (be_valuetype *node)
{
be_decl *ub = this->ctx_->node ();
be_decl *bu = this->ctx_->scope ();
- be_type *bt;
+ be_type *bt = 0;
// Check if we are visiting this via a visit to a typedef node.
if (this->ctx_->alias ())
@@ -389,7 +389,7 @@ be_visitor_union_branch_public_ch::visit_valuetype_fwd (be_valuetype_fwd *node)
{
be_decl *ub = this->ctx_->node ();
be_decl *bu = this->ctx_->scope ();
- be_type *bt;
+ be_type *bt = 0;
// Check if we are visiting this via a visit to a typedef node.
if (this->ctx_->alias ())
@@ -432,7 +432,7 @@ be_visitor_union_branch_public_ch::visit_predefined_type (be_predefined_type *no
{
be_decl *ub = this->ctx_->node ();
be_decl *bu = this->ctx_->scope ();
- be_type *bt;
+ be_type *bt = 0;
be_typedef *td = this->ctx_->alias ();
// Check if we are visiting this via a visit to a typedef node.
@@ -504,7 +504,7 @@ be_visitor_union_branch_public_ch::visit_sequence (be_sequence *node)
{
be_decl *ub = this->ctx_->node ();
be_decl *bu = this->ctx_->scope ();
- be_type *bt;
+ be_type *bt = 0;
// Check if we are visiting this via a visit to a typedef node.
if (this->ctx_->alias ())
@@ -622,7 +622,7 @@ be_visitor_union_branch_public_ch::visit_structure (be_structure *node)
{
be_decl *ub = this->ctx_->node ();
be_decl *bu = this->ctx_->scope ();
- be_type *bt;
+ be_type *bt = 0;
// Check if we are visiting this via a visit to a typedef node.
if (this->ctx_->alias ())
@@ -704,7 +704,7 @@ be_visitor_union_branch_public_ch::visit_union (be_union *node)
{
be_decl *ub = this->ctx_->node ();
be_decl *bu = this->ctx_->scope ();
- be_type *bt;
+ be_type *bt = 0;
// Check if we are visiting this via a visit to a typedef node.
if (this->ctx_->alias ())