From 39b66fa0b5da33e1f12941d5a8f04326258b3659 Mon Sep 17 00:00:00 2001 From: Esteve Fernandez Date: Fri, 6 Nov 2015 09:54:28 -0800 Subject: [PATCH] Fix cpplint warnings --- rclcpp/include/rclcpp/timer.hpp | 4 ++-- rclcpp/src/rclcpp/executors/single_threaded_executor.cpp | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/rclcpp/include/rclcpp/timer.hpp b/rclcpp/include/rclcpp/timer.hpp index 5180cab..48d517c 100644 --- a/rclcpp/include/rclcpp/timer.hpp +++ b/rclcpp/include/rclcpp/timer.hpp @@ -156,7 +156,7 @@ private: using WallTimer = GenericTimer; -} /* namespace timer */ -} /* namespace rclcpp */ +} // namespace timer +} // namespace rclcpp #endif // RCLCPP__TIMER_HPP_ diff --git a/rclcpp/src/rclcpp/executors/single_threaded_executor.cpp b/rclcpp/src/rclcpp/executors/single_threaded_executor.cpp index 23001fe..39f04bf 100644 --- a/rclcpp/src/rclcpp/executors/single_threaded_executor.cpp +++ b/rclcpp/src/rclcpp/executors/single_threaded_executor.cpp @@ -16,7 +16,8 @@ using rclcpp::executors::single_threaded_executor::SingleThreadedExecutor; -SingleThreadedExecutor::SingleThreadedExecutor(rclcpp::memory_strategy::MemoryStrategy::SharedPtr ms) +SingleThreadedExecutor::SingleThreadedExecutor( + rclcpp::memory_strategy::MemoryStrategy::SharedPtr ms) : executor::Executor(ms) {}