Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
pinocchio
Commits
9023b4a2
Verified
Commit
9023b4a2
authored
Dec 14, 2019
by
Justin Carpentier
Browse files
spatial/motion: fix missing specialization
parent
3dd9e697
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/spatial/motion-zero.hpp
View file @
9023b4a2
...
...
@@ -113,7 +113,22 @@ namespace pinocchio
/// \brief BiasZeroTpl has been replaced by MotionZeroTpl. Please use this naming instead.
template
<
typename
Scalar
,
int
Options
>
struct
PINOCCHIO_DEPRECATED
BiasZeroTpl
:
MotionZeroTpl
<
Scalar
,
Options
>
{};
{
typedef
MotionZeroTpl
<
Scalar
,
Options
>
Base
;
BiasZeroTpl
(
const
Base
&
)
{}
};
template
<
typename
Scalar
,
int
Options
>
struct
SE3GroupAction
<
BiasZeroTpl
<
Scalar
,
Options
>
>
{
typedef
BiasZeroTpl
<
Scalar
,
Options
>
ReturnType
;
};
template
<
typename
Scalar
,
int
Options
,
typename
MotionDerived
>
struct
MotionAlgebraAction
<
BiasZeroTpl
<
Scalar
,
Options
>
,
MotionDerived
>
{
typedef
BiasZeroTpl
<
Scalar
,
Options
>
ReturnType
;
};
}
// namespace pinocchio
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment