From e72b13c7cb3466e8dd203d3d7520a27c4e88ceda Mon Sep 17 00:00:00 2001 From: Jacob Perron Date: Wed, 12 Jan 2022 14:27:08 -0800 Subject: [PATCH] Fix include order for cpplint (#493) Relates to https://github.com/ament/ament_lint/pull/324 Signed-off-by: Jacob Perron --- test_rclcpp/test/test_services_server.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test_rclcpp/test/test_services_server.cpp b/test_rclcpp/test/test_services_server.cpp index dd34f00a..e693837a 100644 --- a/test_rclcpp/test/test_services_server.cpp +++ b/test_rclcpp/test/test_services_server.cpp @@ -12,13 +12,13 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include - -#include - #include #include +#include "rclcpp/rclcpp.hpp" + +#include "test_rclcpp/srv/add_two_ints.hpp" + void handle_add_two_ints_noreqid( const std::shared_ptr request, std::shared_ptr response)