Skip to content

Commit a0254f3

Browse files
add const to the other args
1 parent 85b8fbf commit a0254f3

File tree

1 file changed

+2
-2
lines changed
  • planning/behavior_path_dynamic_avoidance_module/src

1 file changed

+2
-2
lines changed

planning/behavior_path_dynamic_avoidance_module/src/scene.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1800,8 +1800,8 @@ DynamicAvoidanceModule::EgoPathReservePoly DynamicAvoidanceModule::calcEgoPathRe
18001800
}
18011801

18021802
auto calcReservePoly = [&ego_path_lines](
1803-
strategy::distance_asymmetric<double> path_expand_strategy,
1804-
strategy::distance_asymmetric<double> steer_expand_strategy,
1803+
const strategy::distance_asymmetric<double> path_expand_strategy,
1804+
const strategy::distance_asymmetric<double> steer_expand_strategy,
18051805
const std::vector<geometry_msgs::msg::Point> & outer_body_path)
18061806
-> tier4_autoware_utils::Polygon2d {
18071807
// reserve area based on the reference path

0 commit comments

Comments
 (0)