Skip to content

Commit

Permalink
Merge pull request #2124 from jwillemsen/jwi-bts
Browse files Browse the repository at this point in the history
Use default
  • Loading branch information
jwillemsen authored Sep 12, 2023
2 parents e2acef6 + 33104f3 commit f11950c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion TAO/tao/Base_Transport_Property.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class TAO_Export TAO_Base_Transport_Property
{
public:
/// Default constructor
TAO_Base_Transport_Property ();
TAO_Base_Transport_Property () = default;

/// Constructor
TAO_Base_Transport_Property (TAO_Endpoint *endpoint,
Expand Down
17 changes: 4 additions & 13 deletions TAO/tao/Base_Transport_Property.inl
Original file line number Diff line number Diff line change
@@ -1,25 +1,16 @@
// -*- C++ -*-
TAO_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_INLINE
TAO_Base_Transport_Property::TAO_Base_Transport_Property ()
{
}

ACE_INLINE
TAO_Base_Transport_Property::
TAO_Base_Transport_Property (TAO_Endpoint *endpoint,
CORBA::Boolean flag)
: TAO_Transport_Descriptor_Interface (endpoint,
flag)
TAO_Base_Transport_Property (TAO_Endpoint *endpoint, CORBA::Boolean flag)
: TAO_Transport_Descriptor_Interface (endpoint, flag)
{
}

ACE_INLINE
TAO_Base_Transport_Property::TAO_Base_Transport_Property (
const TAO_Base_Transport_Property &rhs)
: TAO_Transport_Descriptor_Interface (rhs.endpoint_->duplicate (),
true)
TAO_Base_Transport_Property::TAO_Base_Transport_Property (const TAO_Base_Transport_Property &rhs)
: TAO_Transport_Descriptor_Interface (rhs.endpoint_->duplicate (), true)
{
}

Expand Down

0 comments on commit f11950c

Please sign in to comment.