From 06101df19962ef05ad904f851dd2f7eec830534a Mon Sep 17 00:00:00 2001 From: Patrick Roncagliolo Date: Thu, 16 Nov 2023 09:23:54 +0100 Subject: [PATCH] cpplint --- src/SensorMsgPointCloud2_PCLPointCloud.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/SensorMsgPointCloud2_PCLPointCloud.cpp b/src/SensorMsgPointCloud2_PCLPointCloud.cpp index 4ac5341..61d0e87 100644 --- a/src/SensorMsgPointCloud2_PCLPointCloud.cpp +++ b/src/SensorMsgPointCloud2_PCLPointCloud.cpp @@ -9,7 +9,7 @@ Copyright 2023 Patrick Roncagliolo StampedPointCloud_PCL::StampedPointCloud_PCL(const StampedPointCloud_PCL & other) { - //RCLCPP_WARN(rclcpp::get_logger("PointCloud2 Adapter"), "Copy constructor called"); + // RCLCPP_WARN(rclcpp::get_logger("PointCloud2 Adapter"), "Copy constructor called"); // raise(SIGTRAP); this->header = other.header; this->cloud = other.cloud; @@ -17,7 +17,7 @@ StampedPointCloud_PCL::StampedPointCloud_PCL(const StampedPointCloud_PCL & other StampedPointCloud_PCL::StampedPointCloud_PCL(StampedPointCloud_PCL && other) { - //RCLCPP_WARN(rclcpp::get_logger("PointCloud2 Adapter"), "Move constructor called"); + // RCLCPP_WARN(rclcpp::get_logger("PointCloud2 Adapter"), "Move constructor called"); // raise(SIGTRAP); this->header = std::move(other.header); this->cloud = std::move(other.cloud); @@ -25,7 +25,7 @@ StampedPointCloud_PCL::StampedPointCloud_PCL(StampedPointCloud_PCL && other) StampedPointCloud_PCL & StampedPointCloud_PCL::operator=(const StampedPointCloud_PCL & other) { - //RCLCPP_WARN(rclcpp::get_logger("PointCloud2 Adapter"), "Assignment operator called"); + // RCLCPP_WARN(rclcpp::get_logger("PointCloud2 Adapter"), "Assignment operator called"); // raise(SIGTRAP); if (this == &other) {return *this;} this->header = other.header; @@ -67,7 +67,7 @@ void rclcpp::TypeAdapter