Skip to content

Commit 2cecb4a

Browse files
author
Joshua Hampp
committed
fixed code style
Signed-off-by: Joshua Hampp <j.hampp@denso-adas.de>
1 parent a896f48 commit 2cecb4a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

rclcpp/include/rclcpp/experimental/serialization.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#ifndef RCLCPP__EXPERIMENTAL__SERIALIZATION_HPP_
1616
#define RCLCPP__EXPERIMENTAL__SERIALIZATION_HPP_
1717

18-
#include "rmw/rmw.h"
18+
#include <rmw/rmw.h>
1919

2020
#include <memory>
2121
#include <string>

rclcpp/include/rclcpp/publisher.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ class Publisher : public PublisherBase
212212
{
213213
(void)serialized_msg;
214214
throw std::runtime_error(
215-
"publishing unique_ptr with custom deleter only supported for serialized messages");
215+
"publishing unique_ptr with custom deleter only supported for serialized messages");
216216
}
217217

218218
/// Publish a serialized message.

rclcpp_lifecycle/include/rclcpp_lifecycle/lifecycle_publisher.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class LifecyclePublisher : public LifecyclePublisherInterface,
117117
{
118118
(void)serialized_msg;
119119
throw std::runtime_error(
120-
"publishing unique_ptr with custom deleter only supported for serialized messages");
120+
"publishing unique_ptr with custom deleter only supported for serialized messages");
121121
}
122122

123123
/// Publish a serialized message.

0 commit comments

Comments
 (0)