Skip to content

Commit e48d99f

Browse files
Carlos Mastallijcarpent
authored andcommitted
[cleanup] Removed debugging messages (#82)
1 parent 3a2e689 commit e48d99f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

include/eigenpy/details.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,15 +433,13 @@ namespace eigenpy
433433
/// \brief Determine if pyObj can be converted into a MatType object
434434
static void* convertible(PyArrayObject* pyObj)
435435
{
436-
std::cout << "call: EigenFromPy< Eigen::MatrixBase<MatType> >::convertible" << std::endl;
437436
return EigenFromPyDerived::convertible(pyObj);
438437
}
439438

440439
/// \brief Allocate memory and copy pyObj in the new storage
441440
static void construct(PyObject* pyObj,
442441
bp::converter::rvalue_from_python_stage1_data* memory)
443442
{
444-
std::cout << "call: EigenFromPy< Eigen::MatrixBase<MatType> >::construct" << std::endl;
445443
EigenFromPyDerived::construct(pyObj,memory);
446444
}
447445

0 commit comments

Comments
 (0)