Skip to content
GitLab
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
d8cc8f0b
Verified
Commit
d8cc8f0b
authored
Nov 20, 2020
by
Justin Carpentier
Browse files
core: fix warning with C++17
parent
37e685a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/multibody/liegroup/liegroup-generic.hpp
View file @
d8cc8f0b
...
...
@@ -43,6 +43,12 @@ namespace pinocchio
:
Base
(
lg_variant
)
{}
LieGroupGenericTpl
&
operator
=
(
const
LieGroupGenericTpl
&
other
)
{
static_cast
<
Base
&>
(
*
this
)
=
other
.
toVariant
();
return
*
this
;
}
const
LieGroupVariant
&
toVariant
()
const
{
return
static_cast
<
const
LieGroupVariant
&>
(
*
this
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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