diff options
author | Gael Guennebaud <g.gael@free.fr> | 2010-02-08 16:51:41 +0100 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2010-02-08 16:51:41 +0100 |
commit | 8b016e717fdcbf4f9be34997bb857f52ca34a5b8 (patch) | |
tree | 3c8dcf532926830d5ee3f95c5ab03e0ddc45a2ce /Eigen/src/Geometry | |
parent | 871698d3aa3e125561226a08bee9aa2db5dec6aa (diff) |
get rid of NestParentByRefBit
Diffstat (limited to 'Eigen/src/Geometry')
-rw-r--r-- | Eigen/src/Geometry/Homogeneous.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Eigen/src/Geometry/Homogeneous.h b/Eigen/src/Geometry/Homogeneous.h index 8c95a4d4d..76ca66c57 100644 --- a/Eigen/src/Geometry/Homogeneous.h +++ b/Eigen/src/Geometry/Homogeneous.h @@ -55,8 +55,7 @@ struct ei_traits<Homogeneous<MatrixType,Direction> > ColsAtCompileTime = Direction==Horizontal ? ColsPlusOne : MatrixType::ColsAtCompileTime, MaxRowsAtCompileTime = RowsAtCompileTime, MaxColsAtCompileTime = ColsAtCompileTime, - Flags = _MatrixTypeNested::Flags & HereditaryBits - | EIGEN_PROPAGATE_NESTING_BIT(ei_traits<MatrixType>::Flags), + Flags = _MatrixTypeNested::Flags & HereditaryBits, CoeffReadCost = _MatrixTypeNested::CoeffReadCost }; }; |