From 1a965946074cc0aa09c76c8146f1a23945700090 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 18 Dec 2014 14:53:40 +0100 Subject: [PATCH] rm explicit keyword introduced by backporting another change --- Eigen/src/Geometry/Rotation2D.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Geometry/Rotation2D.h b/Eigen/src/Geometry/Rotation2D.h index 776c36144..a2d59fce1 100644 --- a/Eigen/src/Geometry/Rotation2D.h +++ b/Eigen/src/Geometry/Rotation2D.h @@ -59,7 +59,7 @@ protected: public: /** Construct a 2D counter clock wise rotation from the angle \a a in radian. */ - explicit inline Rotation2D(const Scalar& a) : m_angle(a) {} + inline Rotation2D(const Scalar& a) : m_angle(a) {} /** Default constructor wihtout initialization. The represented rotation is undefined. */ Rotation2D() {}