diff --git a/Eigen/src/Geometry/Transform.h b/Eigen/src/Geometry/Transform.h index cc1b3c49a..76f47a66f 100644 --- a/Eigen/src/Geometry/Transform.h +++ b/Eigen/src/Geometry/Transform.h @@ -283,6 +283,10 @@ public: bool isApprox(const Transform& other, typename NumTraits::Real prec = precision()) const { return m_matrix.isApprox(other.m_matrix, prec); } + #ifdef EIGEN_TRANSFORM_PLUGIN + #include EIGEN_TRANSFORM_PLUGIN + #endif + protected: };