From 3a5b1f6b4e2ef158bf1f9a42d41604a432d36519 Mon Sep 17 00:00:00 2001 From: Justin Carpentier Date: Fri, 26 Jan 2024 15:35:04 +0100 Subject: [PATCH] debug --- include/eigenpy/numpy-type.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/eigenpy/numpy-type.hpp b/include/eigenpy/numpy-type.hpp index 25dee99f2..5c8accc63 100644 --- a/include/eigenpy/numpy-type.hpp +++ b/include/eigenpy/numpy-type.hpp @@ -8,6 +8,7 @@ #include #include #include +#include #include "eigenpy/fwd.hpp" #include "eigenpy/register.hpp" @@ -17,6 +18,7 @@ namespace eigenpy { template bool np_type_is_convertible_into_scalar(const int np_type) { + std::cout << "np_type: " << np_type << std::endl; if (static_cast(NumpyEquivalentType::type_code) >= NPY_USERDEF) return np_type == Register::getTypeCode();