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

core: add template specialization for NumpyAllocator with Eigen::Ref

parent b2b30b20
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,15 @@ namespace eigenpy
}
};
#if EIGEN_VERSION_AT_LEAST(3,2,0)
template<typename MatType>
struct NumpyAllocator<Eigen::Ref<MatType> > : NumpyAllocator<MatType &>
{
};
#endif
template<typename MatType>
struct NumpyAllocator<const MatType &>
{
......@@ -69,6 +78,15 @@ namespace eigenpy
return pyArray;
}
};
#if EIGEN_VERSION_AT_LEAST(3,2,0)
template<typename MatType>
struct NumpyAllocator<const Eigen::Ref<const MatType> > : NumpyAllocator<const MatType &>
{
};
#endif
}
#endif // ifndef __eigenpy_numpy_allocator_hpp__
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