From ff48cba02d12ffc0bd4d366466616cccecda2f3c Mon Sep 17 00:00:00 2001 From: Justin Carpentier <justin.carpentier@inria.fr> Date: Sat, 2 Apr 2022 15:58:10 +0200 Subject: [PATCH] core: fix pre-commit change --- include/eigenpy/eigen-allocator.hpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/include/eigenpy/eigen-allocator.hpp b/include/eigenpy/eigen-allocator.hpp index 761cf7b..3cde4dd 100644 --- a/include/eigenpy/eigen-allocator.hpp +++ b/include/eigenpy/eigen-allocator.hpp @@ -122,7 +122,7 @@ struct EigenAllocator { static void allocate( PyArrayObject *pyArray, - bp::converter::rvalue_from_python_storage<MatType> *storage) { + boost::python::converter::rvalue_from_python_storage<MatType> *storage) { void *raw_ptr = storage->storage.bytes; Type *mat_ptr = details::init_matrix_or_array<Type>::run(pyArray, raw_ptr); Type &mat = *mat_ptr; @@ -243,7 +243,8 @@ struct EigenAllocator<Eigen::Ref<MatType, Options, Stride> > { static void allocate( PyArrayObject *pyArray, - bp::converter::rvalue_from_python_storage<RefType> *storage) { + ::boost::python::converter::rvalue_from_python_storage<RefType> + *storage) { typedef typename StrideType< MatType, Eigen::internal::traits<RefType>::StrideType::InnerStrideAtCompileTime, @@ -351,7 +352,8 @@ struct EigenAllocator<const Eigen::Ref<const MatType, Options, Stride> > { static void allocate( PyArrayObject *pyArray, - bp::converter::rvalue_from_python_storage<RefType> *storage) { + ::boost::python::converter::rvalue_from_python_storage<RefType> + *storage) { typedef typename StrideType< MatType, Eigen::internal::traits<RefType>::StrideType::InnerStrideAtCompileTime, -- GitLab