Skip to content

Commit 033a56f

Browse files
authored
Merge pull request #2541 from jorisv/topic/fix_aba_template_instantiation
Fix aba explicit template instantiation
2 parents 3ce5cf1 + a6fb782 commit 033a56f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88

99
### Fixed
1010
- 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))
11+
- Fix aba explicit template instantiation ([#2541](https://github.com/stack-of-tasks/pinocchio/pull/2541))
1112
- Add parsing meshes with vertices for MJCF format ([#2537](https://github.com/stack-of-tasks/pinocchio/pull/2537))
1213

1314
## [3.3.1] - 2024-12-13

include/pinocchio/algorithm/aba.txx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace pinocchio
99
{
10-
extern template PINOCCHIO_EXPLICIT_INSTANTIATION_DEFINITION_DLLAPI const context::VectorXs & aba<
10+
extern template PINOCCHIO_EXPLICIT_INSTANTIATION_DECLARATION_DLLAPI const context::VectorXs & aba<
1111
context::Scalar,
1212
context::Options,
1313
JointCollectionDefaultTpl,
@@ -21,7 +21,7 @@ namespace pinocchio
2121
const Eigen::MatrixBase<Eigen::Ref<const context::VectorXs>> &,
2222
const Convention);
2323

24-
extern template PINOCCHIO_EXPLICIT_INSTANTIATION_DEFINITION_DLLAPI const context::VectorXs & aba<
24+
extern template PINOCCHIO_EXPLICIT_INSTANTIATION_DECLARATION_DLLAPI const context::VectorXs & aba<
2525
context::Scalar,
2626
context::Options,
2727
JointCollectionDefaultTpl,

0 commit comments

Comments
 (0)