Skip to content

Commit

Permalink
Fix linters warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Orlov <[email protected]>
  • Loading branch information
MichaelOrlov committed Dec 19, 2022
1 parent ca465a3 commit b23a345
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions rosbag2_cpp/src/rosbag2_cpp/writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ void Writer::open(
writer_impl_->open(storage_options, converter_options);
}

void Writer::close() {
writer_impl_->close();
void Writer::close()
{
writer_impl_->close();
}
void Writer::create_topic(const rosbag2_storage::TopicMetadata & topic_with_type)
{
Expand Down
1 change: 0 additions & 1 deletion rosbag2_cpp/src/rosbag2_cpp/writers/sequential_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

#include "rosbag2_storage/default_storage_id.hpp"
#include "rosbag2_storage/storage_options.hpp"
#include <iostream>

namespace rosbag2_cpp
{
Expand Down

0 comments on commit b23a345

Please sign in to comment.