Skip to content
Snippets Groups Projects
Unverified Commit ea99b904 authored by Justin Carpentier's avatar Justin Carpentier Committed by GitHub
Browse files

Merge pull request #344 from jcarpent/devel

Fix for Python 3.6
parents 074ec7d0 991b2e32
No related branches found
No related tags found
No related merge requests found
......@@ -350,7 +350,7 @@ class QuaternionVisitor
public:
static void expose() {
#if BOOST_VERSION / 100 % 1000 < 71
#if PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION == 6
typedef EIGENPY_SHARED_PTR_HOLDER_TYPE(Quaternion) HolderType;
#else
typedef ::boost::python::detail::not_specified HolderType;
......
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