mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 11:49:02 +08:00
Fix AlignedVector3 wrt previous change
This commit is contained in:
parent
f8976fdbe0
commit
51455824ea
@ -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()) {}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user