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
Humanoid Path Planner
hpp-constraints
Commits
5bdb520c
Commit
5bdb520c
authored
May 21, 2021
by
Florent Lamiraux
Browse files
[MatrixView] Define operator= to suppress compilation warning.
parent
90379e7a
Pipeline
#14643
failed with stage
in 12 minutes and 47 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
include/hpp/constraints/matrix-view.hh
View file @
5bdb520c
...
...
@@ -580,6 +580,14 @@ namespace Eigen {
YOU_MIXED_MATRICES_OF_DIFFERENT_SIZES
);
}
MatrixBlocks
&
operator
=
(
const
MatrixBlocks
&
other
)
{
m_nbRows
=
other
.
m_nbRows
;
m_nbCols
=
other
.
m_nbCols
;
m_rows
=
other
.
m_rows
;
m_cols
=
other
.
m_cols
;
return
*
this
;
}
/// Clear rows
inline
void
clearRows
()
{
...
...
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