From ffbcd13803cf5d9e5c398c6c48e4377374770184 Mon Sep 17 00:00:00 2001
From: Justin Carpentier <justin.carpentier@inria.fr>
Date: Thu, 24 Feb 2022 17:52:13 +0100
Subject: [PATCH] core: comment std::cout

---
 include/eigenpy/user-type.hpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/eigenpy/user-type.hpp b/include/eigenpy/user-type.hpp
index cbe0c05..deb8d13 100644
--- a/include/eigenpy/user-type.hpp
+++ b/include/eigenpy/user-type.hpp
@@ -262,10 +262,10 @@ namespace eigenpy
     assert(to_typenum >= 0 && "to_typenum 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>()
-    << " to: " << bp::type_info(typeid(To)).name() << " " << Register::getTypeCode<To>()
-    << "\n to_typenum: " << to_typenum
-    << std::endl;
+//    std::cout << "From: " << bp::type_info(typeid(From)).name() << " " << Register::getTypeCode<From>()
+//    << " to: " << bp::type_info(typeid(To)).name() << " " << Register::getTypeCode<To>()
+//    << "\n to_typenum: " << to_typenum
+//    << std::endl;
 
     if(call_PyArray_RegisterCastFunc(from_array_descr,
                                      to_typenum,
-- 
GitLab