File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9595
9696#ifdef EIGENPY_WITH_CXX11_SUPPORT
9797#include < memory>
98- #define EIGENPY_CLASS_HOLDER_TYPE (T ) ::std::shared_ptr<T>
98+ #define EIGENPY_SHARED_PTR_HOLDER_TYPE (T ) ::std::shared_ptr<T>
9999#else
100100#include < boost/shared_ptr.hpp>
101- #define EIGENPY_CLASS_HOLDER_TYPE (T ) ::boost::shared_ptr<T>
101+ #define EIGENPY_SHARED_PTR_HOLDER_TYPE (T ) ::boost::shared_ptr<T>
102102#endif
103103
104104namespace eigenpy {
Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ class QuaternionVisitor
351351 public:
352352 static void expose () {
353353#if BOOST_VERSION / 100 % 1000 < 71
354- typedef EIGENPY_CLASS_HOLDER_TYPE (Quaternion) HolderType;
354+ typedef EIGENPY_SHARED_PTR_HOLDER_TYPE (Quaternion) HolderType;
355355#else
356356 typedef ::boost::python::detail::not_specified HolderType;
357357#endif
You can’t perform that action at this time.
0 commit comments