Fix AlignedVector3 wrt previous change

This commit is contained in:
Gael Guennebaud 2015-09-02 21:51:58 +02:00
parent f8976fdbe0
commit 51455824ea

View File

@ -207,13 +207,10 @@ struct eval<AlignedVector3<_Scalar>, Dense>
template<typename Scalar> template<typename Scalar>
struct evaluator<AlignedVector3<Scalar> > struct evaluator<AlignedVector3<Scalar> >
: evaluator<Matrix<Scalar,4,1> >::type : evaluator<Matrix<Scalar,4,1> >
{ {
typedef AlignedVector3<Scalar> XprType; typedef AlignedVector3<Scalar> XprType;
typedef typename evaluator<Matrix<Scalar,4,1> >::type Base; typedef evaluator<Matrix<Scalar,4,1> > Base;
typedef evaluator type;
typedef evaluator nestedType;
evaluator(const XprType &m) : Base(m.coeffs()) {} evaluator(const XprType &m) : Base(m.coeffs()) {}
}; };