diff --git a/include/eigenpy/details.hpp b/include/eigenpy/details.hpp index 827b2f228ea51883e21fba19eb3502ede17b4877..6d437ed0a25338041c6e1b74fd2ee27746cf7c5d 100644 --- a/include/eigenpy/details.hpp +++ b/include/eigenpy/details.hpp @@ -16,6 +16,17 @@ #include "eigenpy/registration.hpp" #include "eigenpy/map.hpp" +namespace boost { namespace python { namespace detail { + + template<class MatType> + struct referent_size<Eigen::MatrixBase<MatType>&> + { + BOOST_STATIC_CONSTANT( + std::size_t, value = sizeof(MatType)); + }; + +}}} + namespace boost { namespace python { namespace converter { template<class MatType>