diff --git a/rclcpp/include/rclcpp/service.hpp b/rclcpp/include/rclcpp/service.hpp index c91c788..ed345a3 100644 --- a/rclcpp/include/rclcpp/service.hpp +++ b/rclcpp/include/rclcpp/service.hpp @@ -86,13 +86,15 @@ class Service : public ServiceBase { public: typedef std::function< - void (const std::shared_ptr &, - std::shared_ptr &)> CallbackType; + void ( + const std::shared_ptr &, + std::shared_ptr &)> CallbackType; typedef std::function< - void (const std::shared_ptr &, - const std::shared_ptr &, - std::shared_ptr &)> CallbackWithHeaderType; + void ( + const std::shared_ptr &, + const std::shared_ptr &, + std::shared_ptr &)> CallbackWithHeaderType; RCLCPP_MAKE_SHARED_DEFINITIONS(Service); Service(