Skip to content

Commit

Permalink
fix: unused the parameter (#27)
Browse files Browse the repository at this point in the history
Signed-off-by: ktro2828 <[email protected]>
  • Loading branch information
ktro2828 authored May 2, 2024
1 parent 70913f2 commit 4e86583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/mtr/trajectory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ struct PredictedState
PredictedState(
const float x, const float y, const float dx, const float dy, const float yaw, const float vx,
const float vy)
: x_(x), y_(y), dx_(dx), dy_(dy), yaw_(yaw_), vx_(vx), vy_(vy)
: x_(x), y_(y), dx_(dx), dy_(dy), yaw_(yaw), vx_(vx), vy_(vy)
{
}

Expand Down

0 comments on commit 4e86583

Please sign in to comment.