From c3791fcab1739115283c34adbe269eba6ba9b35b Mon Sep 17 00:00:00 2001 From: Esteve Fernandez Date: Wed, 22 Apr 2015 12:28:30 -0700 Subject: [PATCH] Indent --- rclcpp/include/rclcpp/service.hpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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(