From 3a4f14739ce0f0274d388cd5c40665fde3be9824 Mon Sep 17 00:00:00 2001 From: Dirk Thomas Date: Sat, 20 Jun 2015 11:25:42 -0700 Subject: [PATCH] fix style --- rclcpp/include/rclcpp/parameter.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rclcpp/include/rclcpp/parameter.hpp b/rclcpp/include/rclcpp/parameter.hpp index 4e5e153..0e9efbe 100644 --- a/rclcpp/include/rclcpp/parameter.hpp +++ b/rclcpp/include/rclcpp/parameter.hpp @@ -234,8 +234,7 @@ public: std::stringstream bytes; bool first_byte = true; bytes << "[" << std::hex; - for (auto & byte : as_bytes()) - { + for (auto & byte : as_bytes()) { bytes << "0x" << byte; if (!first_byte) { bytes << ", ";