mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-14 20:56:00 +08:00
bug #879: fix compilation of tri1=mat*tri2 by copying tri2 into a full temporary.
This commit is contained in:
parent
abba11bdcf
commit
f9d6d3780f
@ -207,7 +207,8 @@ template<typename _MatrixType, unsigned int _Mode> class TriangularView
|
|||||||
TransposeMode = (Mode & Upper ? Lower : 0)
|
TransposeMode = (Mode & Upper ? Lower : 0)
|
||||||
| (Mode & Lower ? Upper : 0)
|
| (Mode & Lower ? Upper : 0)
|
||||||
| (Mode & (UnitDiag))
|
| (Mode & (UnitDiag))
|
||||||
| (Mode & (ZeroDiag))
|
| (Mode & (ZeroDiag)),
|
||||||
|
IsVectorAtCompileTime = false
|
||||||
};
|
};
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC
|
EIGEN_DEVICE_FUNC
|
||||||
|
Loading…
x
Reference in New Issue
Block a user