Skip to content

Commit 7bb3f89

Browse files
committed
core: fix typedef
1 parent 44e2f48 commit 7bb3f89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/eigenpy/eigen-from-python.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ namespace eigenpy
4242
{
4343
typedef Eigen::Ref<MatType,Options,Stride> RefType;
4444
#if BOOST_VERSION / 100 % 1000 >= 77
45-
typedef typename aligned_storage<
45+
typedef typename ::boost::python::detail::aligned_storage<
4646
::boost::python::detail::referent_size<RefType&>::value,
4747
::boost::alignment_of<RefType&>::value
48-
>::type type;
48+
>::type AlignedStorage;
4949
#else
5050
typedef ::boost::python::detail::aligned_storage<
5151
::boost::python::detail::referent_size<RefType&>::value

0 commit comments

Comments
 (0)