aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Geometry/Transform.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Geometry/Transform.h')
-rw-r--r--Eigen/src/Geometry/Transform.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Geometry/Transform.h b/Eigen/src/Geometry/Transform.h
index e89581e21..d03fd52fd 100644
--- a/Eigen/src/Geometry/Transform.h
+++ b/Eigen/src/Geometry/Transform.h
@@ -247,14 +247,14 @@ public:
ei_transform_construct_from_matrix<OtherMatrixType,Mode,Dim,HDim>::run(this, other.matrix());
}
- template<typename OtherDerived,typename OtherEvalType>
- Transform(const ReturnByValue<OtherDerived,OtherEvalType>& other)
+ template<typename OtherDerived>
+ Transform(const ReturnByValue<OtherDerived>& other)
{
other.evalTo(*this);
}
- template<typename OtherDerived,typename OtherEvalType>
- Transform& operator=(const ReturnByValue<OtherDerived,OtherEvalType>& other)
+ template<typename OtherDerived>
+ Transform& operator=(const ReturnByValue<OtherDerived>& other)
{
other.evalTo(*this);
return *this;