Skip to content

Commit ea99b90

Browse files
authored
Merge pull request #344 from jcarpent/devel
Fix for Python 3.6
2 parents 074ec7d + 991b2e3 commit ea99b90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/eigenpy/quaternion.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ class QuaternionVisitor
350350

351351
public:
352352
static void expose() {
353-
#if BOOST_VERSION / 100 % 1000 < 71
353+
#if PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION == 6
354354
typedef EIGENPY_SHARED_PTR_HOLDER_TYPE(Quaternion) HolderType;
355355
#else
356356
typedef ::boost::python::detail::not_specified HolderType;

0 commit comments

Comments
 (0)