Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
Signed-off-by: Ryuta Kambe <[email protected]>
  • Loading branch information
veqcc committed Jun 25, 2024
1 parent 6d90205 commit d819400
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ std::vector<Pose> interpolatePose(

const double distance =
autoware::universe_utils::calcDistance2d(start_pose.position, end_pose.position);
const std::vector<double> base_s{0, distance};
const std::vector<double> base_s{0.0, distance};
const std::vector<double> base_x{start_pose.position.x, end_pose.position.x};
const std::vector<double> base_y{start_pose.position.y, end_pose.position.y};
std::vector<double> new_s;
Expand Down

0 comments on commit d819400

Please sign in to comment.