Skip to content

Commit

Permalink
Merge branch 'fix/merge_from_private_area' of github.com:tier4/autowa…
Browse files Browse the repository at this point in the history
…re.universe into fix/merge_from_private_area
  • Loading branch information
tkimura4 committed Jul 13, 2022
2 parents b725fd3 + eddc789 commit c93f9d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ std::vector<lanelet::ConstLanelet> getCrosswalksOnPath(
}

// Add forward path lane_id
const size_t start_idx = *nearest_segment_idx ? *nearest_segment_idx + 1 : 0;
const size_t start_idx = nearest_segment_idx ? *nearest_segment_idx + 1 : 0;
for (size_t i = start_idx; i < path.points.size(); i++) {
const int64_t lane_id = path.points.at(i).lane_ids.at(0);
if (
Expand Down

0 comments on commit c93f9d8

Please sign in to comment.