rename back MayAliasBit to EvalBeforeAssigningBit

This commit is contained in:
Gael Guennebaud
2009-08-16 00:14:05 +02:00
parent f5f2b222a3
commit 65fe5f76fd
9 changed files with 21 additions and 23 deletions

View File

@@ -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()