File tree Expand file tree Collapse file tree
localization/autoware_ekf_localizer/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -337,7 +337,6 @@ void EKFLocalizer::callback_pose_with_covariance(
337337 return ;
338338 }
339339
340- // pose_queue_ stores rclcpp SharedPtr; copy out of the (read-only) agnocast message.
341340 auto pose_msg = std::make_shared<geometry_msgs::msg::PoseWithCovarianceStamped>(*msg);
342341 pose_queue_.push (pose_msg);
343342
@@ -361,8 +360,6 @@ void EKFLocalizer::callback_pose_with_covariance(
361360void EKFLocalizer::callback_twist_with_covariance (
362361 const AUTOWARE_MESSAGE_CONST_SHARED_PTR (geometry_msgs::msg::TwistWithCovarianceStamped) msg)
363362{
364- // twist_queue_ stores rclcpp SharedPtr; copy out of the (read-only) agnocast message so we
365- // can also adjust the covariance below.
366363 auto twist_msg = std::make_shared<geometry_msgs::msg::TwistWithCovarianceStamped>(*msg);
367364
368365 // Ignore twist if velocity is too small.
You can’t perform that action at this time.
0 commit comments