From 85afb614177b4721235fafa139a77f9888a090ec Mon Sep 17 00:00:00 2001 From: Sergiu Dotenco Date: Fri, 28 Aug 2015 22:20:15 +0200 Subject: [PATCH] use explicit Scalar types for AngleAxis initialization (grafted from 89a222ce502483f8f0b02db9261445b7dff69760 ) --- Eigen/src/Geometry/AngleAxis.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Eigen/src/Geometry/AngleAxis.h b/Eigen/src/Geometry/AngleAxis.h index 636712c2b..a5484ba77 100644 --- a/Eigen/src/Geometry/AngleAxis.h +++ b/Eigen/src/Geometry/AngleAxis.h @@ -133,7 +133,7 @@ public: m_angle = Scalar(other.angle()); } - static inline const AngleAxis Identity() { return AngleAxis(0, Vector3::UnitX()); } + static inline const AngleAxis Identity() { return AngleAxis(Scalar(0), Vector3::UnitX()); } /** \returns \c true if \c *this is approximately equal to \a other, within the precision * determined by \a prec. @@ -170,8 +170,8 @@ AngleAxis& AngleAxis::operator=(const QuaternionBase