Skip to content

Commit

Permalink
Fix some compilation warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
florent-lamiraux committed Jan 16, 2025
1 parent 517db88 commit fc8f99f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph/helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ GraphPtr_t graphBuilder(const ProblemSolverPtr_t& ps,
assert(robot.robotFrames(od.name).size() != 0);
for (const FrameIndex& f : robot.robotFrames(od.name)) {
if (model.frames[f].type != ::pinocchio::JOINT) continue;
const JointIndex j = model.frames[f].parent;
const JointIndex j = model.frames[f].parentJoint;
JointPtr_t oj(Joint::create(ps->robot(), j));
LiegroupSpacePtr_t space(oj->configurationSpace());
LiegroupElement lge(robot.currentConfiguration().segment(
Expand Down

0 comments on commit fc8f99f

Please sign in to comment.