Skip to content

Commit c21196c

Browse files
committed
conversion: remove incorrect std::cerr
This follows issue #44.
1 parent f567b49 commit c21196c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

include/eigenpy/details.hpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,8 @@ namespace eigenpy
187187
static void* convertible(PyArrayObject* obj_ptr)
188188
{
189189
if (!PyArray_Check(obj_ptr))
190-
{
191-
#ifndef NDEBUG
192-
std::cerr << "The python object is not a numpy array." << std::endl;
193-
#endif
194190
return 0;
195-
}
191+
196192
if(MatType::IsVectorAtCompileTime)
197193
{
198194
// Special care of scalar matrix of dimension 1x1.

0 commit comments

Comments
 (0)