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(behavior_velocity_occlusion_spot_module): delete unnecessary arg from member function of VirtualWallMarkerCreator #3832

Merged
Changes from all commits
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 @@ -221,14 +221,13 @@ MarkerArray OcclusionSpotModule::createVirtualWallMarkerArray()
MarkerArray wall_marker;
std::string module_name = "occlusion_spot";
std::vector<Pose> slow_down_poses;
size_t module_id = 0;
for (size_t id = 0; id < debug_data_.debug_poses.size(); id++) {
const auto p_front =
calcOffsetPose(debug_data_.debug_poses.at(id), debug_data_.baselink_to_front, 0.0, 0.0);
slow_down_poses.push_back(p_front);
appendMarkerArray(
virtual_wall_marker_creator_->createSlowDownVirtualWallMarker(
slow_down_poses, module_name, current_time, module_id),
slow_down_poses, module_name, current_time),
&wall_marker, current_time);
}
return wall_marker;
Expand Down