Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake
6 changes: 1 addition & 5 deletions include/eigenpy/details.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -187,12 +187,8 @@ namespace eigenpy
static void* convertible(PyArrayObject* obj_ptr)
{
if (!PyArray_Check(obj_ptr))
{
#ifndef NDEBUG
std::cerr << "The python object is not a numpy array." << std::endl;
#endif
return 0;
}

if(MatType::IsVectorAtCompileTime)
{
// Special care of scalar matrix of dimension 1x1.
Expand Down