Skip to content

Commit

Permalink
Fixed argument name in JointState constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
TimSchneider42 committed May 27, 2024
1 parent 8e68dba commit c2bd4f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/franky/joint_state.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ class JointState {
JointState(Vector7d position) : position_(std::move(position)), velocity_(Vector7d::Zero()) {}
#pragma clang diagnostic pop

JointState(Vector7d pose, Vector7d velocity)
: position_(std::move(pose)), velocity_(std::move(velocity)) {}
JointState(Vector7d position, Vector7d velocity)
: position_(std::move(position)), velocity_(std::move(velocity)) {}

JointState(const JointState &) = default;

Expand Down

0 comments on commit c2bd4f4

Please sign in to comment.