Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <scpeters@openrobotics.org>
  • Loading branch information
scpeters committed Aug 29, 2023
1 parent 7b86015 commit 1bb90c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions bullet-featherstone/src/JointFeatures.cc
Original file line number Diff line number Diff line change
Expand Up @@ -393,9 +393,9 @@ bool JointFeatures::SetJointMimicConstraint(
std::size_t _dof,
const BaseJoint3dPtr &_leaderJoint,
std::size_t _leaderAxisDof,
Scalar _multiplier,
Scalar _offset,
Scalar _reference)
double _multiplier,
double _offset,
double _reference)
{
if (_dof != 0 || _leaderAxisDof != 0)
{
Expand Down
6 changes: 3 additions & 3 deletions bullet-featherstone/src/JointFeatures.hh
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ class JointFeatures :
std::size_t _dof,
const BaseJoint3dPtr &_leaderJoint,
std::size_t _leaderAxisDof,
Scalar _multiplier,
Scalar _offset,
Scalar _reference) override;
double _multiplier,
double _offset,
double _reference) override;
};
} // namespace bullet_featherstone
} // namespace physics
Expand Down

0 comments on commit 1bb90c8

Please sign in to comment.