aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Geometry
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-09-07 11:12:30 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-09-07 11:12:30 +0200
commit73a86cfcd3928d6eab6f6c9268d4a7fe9a4d2985 (patch)
tree05fe934f70662d52401a7e1d019051087204f9a8 /Eigen/src/Geometry
parent7fad309631c8aba63ef666f513b5f1995cddb663 (diff)
Add EIGEN_QUATERNION_PLUGIN
Diffstat (limited to 'Eigen/src/Geometry')
-rw-r--r--Eigen/src/Geometry/Quaternion.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Eigen/src/Geometry/Quaternion.h b/Eigen/src/Geometry/Quaternion.h
index 19276b96a..56fa2bfbf 100644
--- a/Eigen/src/Geometry/Quaternion.h
+++ b/Eigen/src/Geometry/Quaternion.h
@@ -278,6 +278,10 @@ public:
inline const Coefficients& coeffs() const { return m_coeffs;}
EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF(NeedsAlignment)
+
+#ifdef EIGEN_QUATERNION_PLUGIN
+# include EIGEN_QUATERNION_PLUGIN
+#endif
protected:
Coefficients m_coeffs;