Skip to content

Commit

Permalink
added non defaulted desctructors
Browse files Browse the repository at this point in the history
  • Loading branch information
tmayoff authored Oct 27, 2023
1 parent a8bfb31 commit 481b1f8
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 3 deletions.
4 changes: 4 additions & 0 deletions TAO/TAO_IDL/be/be_visitor_map/cdr_op_cs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ be_visitor_map_cdr_op_cs::be_visitor_map_cdr_op_cs (be_visitor_context *ctx)
{
}

be_visitor_map_cdr_op_cs::~be_visitor_map_cdr_op_cs ()
{
}

int
be_visitor_map_cdr_op_cs::visit_map (be_map *node)
{
Expand Down
4 changes: 4 additions & 0 deletions TAO/TAO_IDL/be/be_visitor_map/map_ch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ be_visitor_map_ch::be_visitor_map_ch (be_visitor_context *ctx)
{
}

be_visitor_map_ch::~be_visitor_map_ch ()
{
}

int be_visitor_map_ch::visit_map (be_map *node)
{
if (node->defined_in () == 0)
Expand Down
4 changes: 4 additions & 0 deletions TAO/TAO_IDL/be/be_visitor_map/map_cs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ be_visitor_map_cs::be_visitor_map_cs (be_visitor_context *ctx)
{
}

be_visitor_map_cs::~be_visitor_map_cs ()
{
}

int be_visitor_map_cs::visit_map (be_map *)
{
return 0;
Expand Down
2 changes: 1 addition & 1 deletion TAO/TAO_IDL/be_include/be_visitor_map/cdr_op_cs.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class be_visitor_map_cdr_op_cs : public be_visitor_decl
be_visitor_map_cdr_op_cs (be_visitor_context *ctx);

/// destructor
~be_visitor_map_cdr_op_cs () = default;
~be_visitor_map_cdr_op_cs ();

/// visit map
virtual int visit_map (be_map *node);
Expand Down
2 changes: 1 addition & 1 deletion TAO/TAO_IDL/be_include/be_visitor_map/map_ch.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class be_visitor_map_ch : public be_visitor_decl
be_visitor_map_ch (be_visitor_context *ctx);

/// destructor
~be_visitor_map_ch () = default;
~be_visitor_map_ch ();

/// visit map node.
virtual int visit_map (be_map *node);
Expand Down
2 changes: 1 addition & 1 deletion TAO/TAO_IDL/be_include/be_visitor_map/map_cs.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class be_visitor_map_cs : public be_visitor_decl
be_visitor_map_cs (be_visitor_context *ctx);

/// destructor
~be_visitor_map_cs () = default;
~be_visitor_map_cs ();

/// visit map node
virtual int visit_map (be_map *node);
Expand Down

0 comments on commit 481b1f8

Please sign in to comment.