Skip to content
Snippets Groups Projects
Unverified Commit 51b79afe authored by Justin Carpentier's avatar Justin Carpentier Committed by GitHub
Browse files

Merge pull request #244 from jcarpent/devel

Comment useless print
parents 7ec95dab 4f9bdf45
No related branches found
No related tags found
No related merge requests found
Pipeline #15519 passed with warnings
...@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment