Skip to content
Snippets Groups Projects
Unverified Commit 2c238879 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

[Conversion] Handle correctly the case Eigen::Ref

parent 813b28bd
No related branches found
No related tags found
No related merge requests found
Pipeline #1043 passed with warnings
...@@ -338,7 +338,9 @@ namespace eigenpy ...@@ -338,7 +338,9 @@ namespace eigenpy
&EigenFromPy<MatType>::construct,bp::type_id< Eigen::MatrixBase<MatType> >()); &EigenFromPy<MatType>::construct,bp::type_id< Eigen::MatrixBase<MatType> >());
} }
}; };
#if EIGEN_VERSION_AT_LEAST(3,2,0)
/// Template specialization for Eigen::Ref
template<typename MatType> template<typename MatType>
struct EigenFromPyConverter< eigenpy::Ref<MatType> > struct EigenFromPyConverter< eigenpy::Ref<MatType> >
{ {
...@@ -349,6 +351,7 @@ namespace eigenpy ...@@ -349,6 +351,7 @@ namespace eigenpy
&EigenFromPy<MatType>::construct,bp::type_id<MatType>()); &EigenFromPy<MatType>::construct,bp::type_id<MatType>());
} }
}; };
#endif
template<typename MatType> template<typename MatType>
......
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