Skip to content

Commit

Permalink
Merge pull request #2541 from jorisv/topic/fix_aba_template_instantia…
Browse files Browse the repository at this point in the history
…tion

Fix aba explicit template instantiation
  • Loading branch information
jcarpent authored Jan 3, 2025
2 parents 3ce5cf1 + a6fb782 commit 033a56f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Fixed
- Fix mjcf Euler angle parsing: use xyz as a default value for eulerseq compiler option ([#2526](https://github.com/stack-of-tasks/pinocchio/pull/2526))
- Fix aba explicit template instantiation ([#2541](https://github.com/stack-of-tasks/pinocchio/pull/2541))
- Add parsing meshes with vertices for MJCF format ([#2537](https://github.com/stack-of-tasks/pinocchio/pull/2537))

## [3.3.1] - 2024-12-13
Expand Down
4 changes: 2 additions & 2 deletions include/pinocchio/algorithm/aba.txx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace pinocchio
{
extern template PINOCCHIO_EXPLICIT_INSTANTIATION_DEFINITION_DLLAPI const context::VectorXs & aba<
extern template PINOCCHIO_EXPLICIT_INSTANTIATION_DECLARATION_DLLAPI const context::VectorXs & aba<
context::Scalar,
context::Options,
JointCollectionDefaultTpl,
Expand All @@ -21,7 +21,7 @@ namespace pinocchio
const Eigen::MatrixBase<Eigen::Ref<const context::VectorXs>> &,
const Convention);

extern template PINOCCHIO_EXPLICIT_INSTANTIATION_DEFINITION_DLLAPI const context::VectorXs & aba<
extern template PINOCCHIO_EXPLICIT_INSTANTIATION_DECLARATION_DLLAPI const context::VectorXs & aba<
context::Scalar,
context::Options,
JointCollectionDefaultTpl,
Expand Down

0 comments on commit 033a56f

Please sign in to comment.