-
Notifications
You must be signed in to change notification settings - Fork 682
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_path_planner): resample path in the route #3179
fix(behavior_path_planner): resample path in the route #3179
Conversation
Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
@rej55 @TakaHoribe Could you review the PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## main #3179 +/- ##
=======================================
Coverage 12.21% 12.21%
=======================================
Files 1352 1352
Lines 94313 94313
Branches 26776 26776
=======================================
Hits 11517 11517
Misses 70636 70636
Partials 12160 12160
*This pull request uses carry forward flags. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
How come this was not caught by gcc warnings? |
@VRichardJP I also expected the warning. I'm not sure why. |
Is it a bug from GCC? If I try something like this: const auto resampled_path_with_lane_id = motion_utils::resamplePath(
raw_path_with_lane_id, parameter.input_path_interval, parameter.enable_akima_spline_first);
const auto test = malloc(1);
return raw_path_with_lane_id; I get the error:
Somehow |
…ation#3179) Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Description
Resampled path_with_lane_id is supposed to be used, but actually not used.
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.