Skip to content

Commit

Permalink
Fix illegal use of .template block() for dynamic size block
Browse files Browse the repository at this point in the history
  • Loading branch information
ManifoldFR committed Feb 12, 2024
1 parent bfd8fd7 commit 838b25c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void ContinuousCentroidalFwdDynamicsTpl<Scalar>::dForward(
}
}
d.Ju_.setZero();
d.Ju_.template block(9, 0, nu_, nu_).setIdentity();
d.Ju_.block(9, 0, nu_, nu_).setIdentity();
}

template <typename Scalar>
Expand Down

0 comments on commit 838b25c

Please sign in to comment.