We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7ec95da + 4f9bdf4 commit 51b79afCopy full SHA for 51b79af
unittest/user_type.cpp
@@ -189,8 +189,10 @@ BOOST_PYTHON_MODULE(user_type)
189
bp::def("create_float",create<float>);
190
191
bp::def("build_matrix",build_matrix<double>);
192
+#if EIGEN_VERSION_AT_LEAST(3,3,0)
193
bp::def("print",print<double>);
194
bp::def("print",print<float>);
195
+#endif
196
197
eigenpy::registerCast<DoubleType,double>(true);
198
eigenpy::registerCast<double,DoubleType>(true);
0 commit comments