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

core: expose by default for types const Eigen::Ref<const ...

parent ead61d9f
No related branches found
No related tags found
No related merge requests found
...@@ -68,6 +68,7 @@ void enableEigenPySpecific() { ...@@ -68,6 +68,7 @@ void enableEigenPySpecific() {
EigenToPyConverter<MatType>::registration(); EigenToPyConverter<MatType>::registration();
#if EIGEN_VERSION_AT_LEAST(3, 2, 0) #if EIGEN_VERSION_AT_LEAST(3, 2, 0)
EigenToPyConverter<Eigen::Ref<MatType> >::registration(); EigenToPyConverter<Eigen::Ref<MatType> >::registration();
EigenToPyConverter<const Eigen::Ref<const MatType> >::registration();
#endif #endif
// from-python // from-python
......
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