From 65fe5f76fde99891bd2b75640d8ed6a75d6e4cbb Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sun, 16 Aug 2009 00:14:05 +0200 Subject: rename back MayAliasBit to EvalBeforeAssigningBit --- Eigen/src/Core/util/Constants.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'Eigen/src/Core/util') diff --git a/Eigen/src/Core/util/Constants.h b/Eigen/src/Core/util/Constants.h index 1d55217f5..21e7f62c3 100644 --- a/Eigen/src/Core/util/Constants.h +++ b/Eigen/src/Core/util/Constants.h @@ -76,10 +76,8 @@ const unsigned int EvalBeforeNestingBit = 0x2; /** \ingroup flags * - * Means the expression cannot be evaluated safely if the result alias one - * of the operands of the expression. Therefore it should be evaluated - * before any assignement. */ -const unsigned int MayAliasBit = 0x4; + * means the expression should be evaluated before any assignement */ +const unsigned int EvalBeforeAssigningBit = 0x4; /** \ingroup flags * @@ -184,7 +182,7 @@ const unsigned int SparseBit = 0x1000; // list of flags that are inherited by default const unsigned int HereditaryBits = RowMajorBit | EvalBeforeNestingBit - | MayAliasBit + | EvalBeforeAssigningBit | SparseBit; // Possible values for the Mode parameter of part() -- cgit v1.2.3