Skip to content

Commit

Permalink
make destructor as default
Browse files Browse the repository at this point in the history
  • Loading branch information
dkorenkovnl committed Mar 15, 2024
1 parent 139764e commit 3830f06
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions rosbag2_storage_mcap/src/mcap_storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ class ROSBAG2_STORAGE_MCAP_PUBLIC MCAPStorageSnapshot
{
public:
MCAPStorageSnapshot();
~MCAPStorageSnapshot() override;
~MCAPStorageSnapshot() override = default;
/** BaseIOInterface **/
#ifdef ROSBAG2_STORAGE_MCAP_HAS_STORAGE_OPTIONS
void open(const rosbag2_storage::StorageOptions & storage_options,
Expand Down Expand Up @@ -917,10 +917,6 @@ MCAPStorageSnapshot::MCAPStorageSnapshot():storage_(nullptr),current_storage_siz
{
}

MCAPStorageSnapshot::~MCAPStorageSnapshot()
{
}

/** BaseIOInterface **/
#ifdef ROSBAG2_STORAGE_MCAP_HAS_STORAGE_OPTIONS
void MCAPStorageSnapshot::open(const rosbag2_storage::StorageOptions & storage_options,
Expand Down

0 comments on commit 3830f06

Please sign in to comment.