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

core: fix typedef

parent 44e2f48e
No related branches found
No related tags found
No related merge requests found
Pipeline #15821 failed
......@@ -42,10 +42,10 @@ namespace eigenpy
{
typedef Eigen::Ref<MatType,Options,Stride> RefType;
#if BOOST_VERSION / 100 % 1000 >= 77
typedef typename aligned_storage<
typedef typename ::boost::python::detail::aligned_storage<
::boost::python::detail::referent_size<RefType&>::value,
::boost::alignment_of<RefType&>::value
>::type type;
>::type AlignedStorage;
#else
typedef ::boost::python::detail::aligned_storage<
::boost::python::detail::referent_size<RefType&>::value
......
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