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
eigenpy
Commits
4f9bdf45
Verified
Commit
4f9bdf45
authored
Aug 04, 2021
by
Justin Carpentier
Browse files
test/custom: comment useless print
parent
7ec95dab
Pipeline
#15514
passed with stage
in 15 minutes and 2 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
unittest/user_type.cpp
View file @
4f9bdf45
...
@@ -189,8 +189,10 @@ BOOST_PYTHON_MODULE(user_type)
...
@@ -189,8 +189,10 @@ BOOST_PYTHON_MODULE(user_type)
bp
::
def
(
"create_float"
,
create
<
float
>
);
bp
::
def
(
"create_float"
,
create
<
float
>
);
bp
::
def
(
"build_matrix"
,
build_matrix
<
double
>
);
bp
::
def
(
"build_matrix"
,
build_matrix
<
double
>
);
#if EIGEN_VERSION_AT_LEAST(3,3,0)
bp
::
def
(
"print"
,
print
<
double
>
);
bp
::
def
(
"print"
,
print
<
double
>
);
bp
::
def
(
"print"
,
print
<
float
>
);
bp
::
def
(
"print"
,
print
<
float
>
);
#endif
eigenpy
::
registerCast
<
DoubleType
,
double
>
(
true
);
eigenpy
::
registerCast
<
DoubleType
,
double
>
(
true
);
eigenpy
::
registerCast
<
double
,
DoubleType
>
(
true
);
eigenpy
::
registerCast
<
double
,
DoubleType
>
(
true
);
...
...
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