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
tsid
Commits
2c2e3f3e
Commit
2c2e3f3e
authored
Feb 06, 2019
by
Andrea Del Prete
Browse files
Fix warnings for casting
parent
eb463609
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tasks/task-se3-equality.cpp
View file @
2c2e3f3e
...
...
@@ -63,12 +63,12 @@ namespace tsid
void
TaskSE3Equality
::
setMask
(
math
::
ConstRefVector
mask
)
{
TaskMotion
::
setMask
(
mask
);
m_constraint
.
resize
(
dim
(),
m_J
.
cols
());
m_constraint
.
resize
(
dim
(),
(
unsigned
int
)
m_J
.
cols
());
}
int
TaskSE3Equality
::
dim
()
const
{
return
m_mask
.
sum
();
return
(
int
)
m_mask
.
sum
();
}
const
Vector
&
TaskSE3Equality
::
Kp
()
const
{
return
m_Kp
;
}
...
...
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