Skip to content

Commit b4ea28c

Browse files
committed
fix: remove deprecated pointer type
1 parent fc36291 commit b4ea28c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

multisensor_calibration/include/multisensor_calibration/guidance/GuidedCameraLidarTargetPlacementNode.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class GuidedCameraLidarTargetPlacementNode : public GuidanceBase, public rclcpp:
167167
*
168168
* @param[in] ipImgMsg image message.
169169
*/
170-
void onImageReceived(const InputImage_Message_T::ConstPtr& ipImgMsg);
170+
void onImageReceived(const InputImage_Message_T::ConstSharedPtr& ipImgMsg);
171171

172172
/**
173173
* @brief Method to project outer border frame to image.

multisensor_calibration/src/guidance/GuidedCameraLidarTargetPlacementNode.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ void GuidedCameraLidarTargetPlacementNode::computeExtrinsicFovBoundingPlanes()
7878
// //--- compute ground plane from lidar data and max hight of target
7979
// //--- get single point cloud message
8080
// //--- get camera intrinsics from camera_info
81-
// InputCloud_Message_T::ConstPtr pLidarCloudMsg =
81+
// InputCloud_Message_T::ConstSharedPtr pLidarCloudMsg =
8282
// ros::topic::waitForMessage<InputCloud_Message_T>(calibrationMetaData_.ref_topic_name,
8383
// ros::Duration(3, 0));
8484
// pcl::PointCloud<InputPointType>::Ptr pLidarCloud(new pcl::PointCloud<InputPointType>);

0 commit comments

Comments
 (0)