Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(autoware_ground_segmentation): fix clang-diagnostic-inconsistent-missing-override #9517

Merged
merged 2 commits into from
Dec 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class ScanGroundFilterComponent : public autoware::pointcloud_preprocessor::Filt
// conform to new API
virtual void faster_filter(
xmfcx marked this conversation as resolved.
Show resolved Hide resolved
const PointCloud2ConstPtr & input, const IndicesPtr & indices, PointCloud2 & output,
const autoware::pointcloud_preprocessor::TransformInfo & transform_info);
const autoware::pointcloud_preprocessor::TransformInfo & transform_info) override;

tf2_ros::Buffer tf_buffer_{get_clock()};
tf2_ros::TransformListener tf_listener_{tf_buffer_};
Expand Down
Loading