diff --git a/include/eigenpy/details.hpp b/include/eigenpy/details.hpp index 2fa0de5e0bd8f4d6ae6ffb058f32a730511b4f2d..9a5bddf729ffc696d5509ac1908ec260b1e97c12 100644 --- a/include/eigenpy/details.hpp +++ b/include/eigenpy/details.hpp @@ -20,6 +20,24 @@ #define GET_PY_ARRAY_TYPE(array) PyArray_ObjectType(reinterpret_cast<PyObject *>(array), 0) +namespace boost { namespace python { namespace detail { + + template<class MatType> + struct referent_size<Eigen::MatrixBase<MatType>&> + { + BOOST_STATIC_CONSTANT( + std::size_t, value = sizeof(MatType)); + }; + + template<class MatType> + struct referent_size<Eigen::EigenBase<MatType>&> + { + BOOST_STATIC_CONSTANT( + std::size_t, value = sizeof(MatType)); + }; + +}}} + namespace eigenpy { template <typename SCALAR> struct NumpyEquivalentType {};