Skip to content
Snippets Groups Projects
Verified Commit ffbcd138 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: comment std::cout

parent 9e4b7921
No related branches found
No related tags found
No related merge requests found
...@@ -262,10 +262,10 @@ namespace eigenpy ...@@ -262,10 +262,10 @@ namespace eigenpy
assert(to_typenum >= 0 && "to_typenum is not valid"); assert(to_typenum >= 0 && "to_typenum is not valid");
assert(from_array_descr != NULL && "from_array_descr is not valid"); assert(from_array_descr != NULL && "from_array_descr is not valid");
std::cout << "From: " << bp::type_info(typeid(From)).name() << " " << Register::getTypeCode<From>() // std::cout << "From: " << bp::type_info(typeid(From)).name() << " " << Register::getTypeCode<From>()
<< " to: " << bp::type_info(typeid(To)).name() << " " << Register::getTypeCode<To>() // << " to: " << bp::type_info(typeid(To)).name() << " " << Register::getTypeCode<To>()
<< "\n to_typenum: " << to_typenum // << "\n to_typenum: " << to_typenum
<< std::endl; // << std::endl;
if(call_PyArray_RegisterCastFunc(from_array_descr, if(call_PyArray_RegisterCastFunc(from_array_descr,
to_typenum, to_typenum,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment