|
21 | 21 |
|
22 | 22 | // For old Eigen versions, EIGEN_DEVICE_FUNC is not defined. |
23 | 23 | // We must define it just in the scope of this file. |
24 | | -#if not EIGEN_VERSION_AT_LEAST(3,2,91) |
| 24 | +#if not EIGEN_VERSION_AT_LEAST(3,2,90) |
25 | 25 | #define EIGEN_DEVICE_FUNC |
26 | 26 | #endif |
27 | 27 |
|
@@ -58,7 +58,7 @@ namespace eigenpy |
58 | 58 | typedef typename Base::CoeffReturnType CoeffReturnType; /*!< \brief The return type for coefficient access. \details Depending on whether the object allows direct coefficient access (e.g. for a MatrixXd), this type is either 'const Scalar&' or simply 'Scalar' for objects that do not allow direct coefficient access. */ |
59 | 59 | typedef typename Eigen::internal::ref_selector<Base>::type Nested; |
60 | 60 | typedef typename Eigen::internal::traits<Base>::StorageKind StorageKind; |
61 | | -#if EIGEN_VERSION_AT_LEAST(3,2,91) |
| 61 | +#if EIGEN_VERSION_AT_LEAST(3,2,90) |
62 | 62 | typedef typename Eigen::internal::traits<Base>::StorageIndex StorageIndex; |
63 | 63 | #else |
64 | 64 | typedef typename Eigen::internal::traits<Base>::Index StorageIndex; |
@@ -104,7 +104,7 @@ namespace eigenpy |
104 | 104 | }; // struct Ref<PlainObjectType> |
105 | 105 | } |
106 | 106 |
|
107 | | -#if not EIGEN_VERSION_AT_LEAST(3,2,91) |
| 107 | +#if not EIGEN_VERSION_AT_LEAST(3,2,90) |
108 | 108 | #undef EIGEN_DEVICE_FUNC |
109 | 109 | #endif |
110 | 110 |
|
|
0 commit comments