aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-08-16 00:14:05 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-08-16 00:14:05 +0200
commit65fe5f76fde99891bd2b75640d8ed6a75d6e4cbb (patch)
tree8c3e740e192aacded00c165adb4a3082e169ec78 /Eigen/src/Core/util
parentf5f2b222a3862d5ccc19e6e44e4f37de1a56dfb5 (diff)
rename back MayAliasBit to EvalBeforeAssigningBit
Diffstat (limited to 'Eigen/src/Core/util')
-rw-r--r--Eigen/src/Core/util/Constants.h8
1 files changed, 3 insertions, 5 deletions
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()