Skip to content

Commit ff48cba

Browse files
committed
core: fix pre-commit change
1 parent 2604af2 commit ff48cba

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

include/eigenpy/eigen-allocator.hpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ struct EigenAllocator {
122122

123123
static void allocate(
124124
PyArrayObject *pyArray,
125-
bp::converter::rvalue_from_python_storage<MatType> *storage) {
125+
boost::python::converter::rvalue_from_python_storage<MatType> *storage) {
126126
void *raw_ptr = storage->storage.bytes;
127127
Type *mat_ptr = details::init_matrix_or_array<Type>::run(pyArray, raw_ptr);
128128
Type &mat = *mat_ptr;
@@ -243,7 +243,8 @@ struct EigenAllocator<Eigen::Ref<MatType, Options, Stride> > {
243243

244244
static void allocate(
245245
PyArrayObject *pyArray,
246-
bp::converter::rvalue_from_python_storage<RefType> *storage) {
246+
::boost::python::converter::rvalue_from_python_storage<RefType>
247+
*storage) {
247248
typedef typename StrideType<
248249
MatType,
249250
Eigen::internal::traits<RefType>::StrideType::InnerStrideAtCompileTime,
@@ -351,7 +352,8 @@ struct EigenAllocator<const Eigen::Ref<const MatType, Options, Stride> > {
351352

352353
static void allocate(
353354
PyArrayObject *pyArray,
354-
bp::converter::rvalue_from_python_storage<RefType> *storage) {
355+
::boost::python::converter::rvalue_from_python_storage<RefType>
356+
*storage) {
355357
typedef typename StrideType<
356358
MatType,
357359
Eigen::internal::traits<RefType>::StrideType::InnerStrideAtCompileTime,

0 commit comments

Comments
 (0)