Skip to content

Commit

Permalink
fixed code style
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Hampp <[email protected]>
  • Loading branch information
Joshua Hampp committed Jan 30, 2020
1 parent a896f48 commit 2cecb4a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rclcpp/include/rclcpp/experimental/serialization.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#ifndef RCLCPP__EXPERIMENTAL__SERIALIZATION_HPP_
#define RCLCPP__EXPERIMENTAL__SERIALIZATION_HPP_

#include "rmw/rmw.h"
#include <rmw/rmw.h>

#include <memory>
#include <string>
Expand Down
2 changes: 1 addition & 1 deletion rclcpp/include/rclcpp/publisher.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class Publisher : public PublisherBase
{
(void)serialized_msg;
throw std::runtime_error(
"publishing unique_ptr with custom deleter only supported for serialized messages");
"publishing unique_ptr with custom deleter only supported for serialized messages");
}

/// Publish a serialized message.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class LifecyclePublisher : public LifecyclePublisherInterface,
{
(void)serialized_msg;
throw std::runtime_error(
"publishing unique_ptr with custom deleter only supported for serialized messages");
"publishing unique_ptr with custom deleter only supported for serialized messages");
}

/// Publish a serialized message.
Expand Down

0 comments on commit 2cecb4a

Please sign in to comment.