Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ros2/rmw_zenoh
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6c48aa8e414178e831cac131d3006c20f5c3fa59
Choose a base ref
..
head repository: ros2/rmw_zenoh
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 61439594a95ec1ee08985ccd5e3af70c8c825ede
Choose a head ref
Showing with 1 addition and 6 deletions.
  1. +0 −5 rmw_zenoh_cpp/src/detail/rmw_subscription_data.cpp
  2. +1 −1 rmw_zenoh_cpp/src/detail/rmw_subscription_data.hpp
5 changes: 0 additions & 5 deletions rmw_zenoh_cpp/src/detail/rmw_subscription_data.cpp
Original file line number Diff line number Diff line change
@@ -49,11 +49,6 @@ SubscriptionData::Message::Message(
{
}

///=============================================================================
SubscriptionData::Message::~Message()
{
}

///=============================================================================
std::shared_ptr<SubscriptionData> SubscriptionData::make(
std::shared_ptr<zenoh::Session> session,
2 changes: 1 addition & 1 deletion rmw_zenoh_cpp/src/detail/rmw_subscription_data.hpp
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@ class SubscriptionData final : public std::enable_shared_from_this<SubscriptionD
uint64_t recv_ts,
AttachmentData && attachment);

~Message();
~Message() = default;

Payload payload;
uint64_t recv_timestamp;