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.
1 parent 3a2e689 commit e48d99fCopy full SHA for e48d99f
include/eigenpy/details.hpp
@@ -433,15 +433,13 @@ namespace eigenpy
433
/// \brief Determine if pyObj can be converted into a MatType object
434
static void* convertible(PyArrayObject* pyObj)
435
{
436
- std::cout << "call: EigenFromPy< Eigen::MatrixBase<MatType> >::convertible" << std::endl;
437
return EigenFromPyDerived::convertible(pyObj);
438
}
439
440
/// \brief Allocate memory and copy pyObj in the new storage
441
static void construct(PyObject* pyObj,
442
bp::converter::rvalue_from_python_stage1_data* memory)
443
444
- std::cout << "call: EigenFromPy< Eigen::MatrixBase<MatType> >::construct" << std::endl;
445
EigenFromPyDerived::construct(pyObj,memory);
446
447
0 commit comments