Skip to content

Commit

Permalink
Make test_UDPv4TransportDescriptor non-moveable
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
  • Loading branch information
MiguelCompany authored Nov 14, 2023
1 parent 61323cc commit 9b69270
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ struct test_UDPv4TransportDescriptor : public SocketTransportDescriptor

//! Move constructor
RTPS_DllAPI test_UDPv4TransportDescriptor(
test_UDPv4TransportDescriptor&& t) = default;
test_UDPv4TransportDescriptor&& t) = delete;

//! Move assignment
RTPS_DllAPI test_UDPv4TransportDescriptor& operator =(
test_UDPv4TransportDescriptor&& t) = default;
test_UDPv4TransportDescriptor&& t) = delete;

//! Comparison operator
// Filters are not included
Expand Down

0 comments on commit 9b69270

Please sign in to comment.