Skip to content

Commit

Permalink
Removed semicolon
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
  • Loading branch information
MiguelCompany authored and IkerLuengo committed Aug 31, 2021
1 parent f9d57b2 commit 2800cb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/rtps/DataSharing/DataSharingNotification.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ std::shared_ptr<DataSharingNotification> DataSharingNotification::create_notific
const std::string& shared_dir)
{
std::shared_ptr<DataSharingNotification> notification = std::make_shared<DataSharingNotification>();
if (!notification->create_and_init_notification(reader_guid, shared_dir));
if (!notification->create_and_init_notification(reader_guid, shared_dir))
{
notification.reset();
}
Expand Down

0 comments on commit 2800cb2

Please sign in to comment.