File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 2020 #define EIGENPY_DEFAULT_ALIGNMENT_VALUE Eigen::Aligned
2121#endif
2222
23+ #define EIGENPY_NO_ALIGNMENT_VALUE Eigen::Unaligned
24+
2325#include " eigenpy/expose.hpp"
2426
2527namespace eigenpy
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ namespace eigenpy
2020
2121 template <typename PlainObjectTypeT>
2222 struct Ref
23- : Eigen::Ref<PlainObjectTypeT,EIGENPY_DEFAULT_ALIGNMENT_VALUE ,typename StrideType<PlainObjectTypeT>::type>
23+ : Eigen::Ref<PlainObjectTypeT,EIGENPY_NO_ALIGNMENT_VALUE ,typename StrideType<PlainObjectTypeT>::type>
2424 {
2525 public:
26- typedef Eigen::Ref<PlainObjectTypeT,EIGENPY_DEFAULT_ALIGNMENT_VALUE ,typename eigenpy::template StrideType<PlainObjectTypeT>::type> Base;
26+ typedef Eigen::Ref<PlainObjectTypeT,EIGENPY_NO_ALIGNMENT_VALUE ,typename eigenpy::template StrideType<PlainObjectTypeT>::type> Base;
2727
2828 private:
2929 typedef Eigen::internal::traits<Base> Traits;
You can’t perform that action at this time.
0 commit comments