aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Diagonal.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-02-08 16:51:41 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-02-08 16:51:41 +0100
commit8b016e717fdcbf4f9be34997bb857f52ca34a5b8 (patch)
tree3c8dcf532926830d5ee3f95c5ab03e0ddc45a2ce /Eigen/src/Core/Diagonal.h
parent871698d3aa3e125561226a08bee9aa2db5dec6aa (diff)
get rid of NestParentByRefBit
Diffstat (limited to 'Eigen/src/Core/Diagonal.h')
-rw-r--r--Eigen/src/Core/Diagonal.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Eigen/src/Core/Diagonal.h b/Eigen/src/Core/Diagonal.h
index 4f8bc01c3..3720952cd 100644
--- a/Eigen/src/Core/Diagonal.h
+++ b/Eigen/src/Core/Diagonal.h
@@ -58,8 +58,7 @@ struct ei_traits<Diagonal<MatrixType,Index> >
: Index == Dynamic ? EIGEN_ENUM_MIN(MatrixType::MaxRowsAtCompileTime, MatrixType::MaxColsAtCompileTime)
: (EIGEN_ENUM_MIN(MatrixType::MaxRowsAtCompileTime, MatrixType::MaxColsAtCompileTime) - AbsIndex),
MaxColsAtCompileTime = 1,
- Flags = ((unsigned int)_MatrixTypeNested::Flags & (HereditaryBits | LinearAccessBit))
- | EIGEN_PROPAGATE_NESTING_BIT(ei_traits<MatrixType>::Flags),
+ Flags = (unsigned int)_MatrixTypeNested::Flags & (HereditaryBits | LinearAccessBit),
CoeffReadCost = _MatrixTypeNested::CoeffReadCost
};
};