aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util
diff options
context:
space:
mode:
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()