Skip to content

Commit

Permalink
Merge pull request #1221 from ManifoldFR/devel
Browse files Browse the repository at this point in the history
Fix use of 'template' when actually calling non-template member
  • Loading branch information
cmastalli authored Feb 5, 2024
2 parents b57d566 + 5b79c07 commit 9fe6138
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,7 @@ class ActuationModelFloatingBaseThrustersTpl
// Update the joint actuation part
W_thrust_.setZero();
if (nu_ > n_thrusters_) {
W_thrust_
.template bottomRightCorner(nu_ - n_thrusters_, nu_ - n_thrusters_)
W_thrust_.bottomRightCorner(nu_ - n_thrusters_, nu_ - n_thrusters_)
.diagonal()
.setOnes();
}
Expand Down

0 comments on commit 9fe6138

Please sign in to comment.