Some bit flags and internal structures are deprecated

This commit is contained in:
Gael Guennebaud 2014-02-20 15:25:06 +01:00
parent 9621333545
commit b2e1453e1e
2 changed files with 6 additions and 4 deletions

View File

@ -53,14 +53,14 @@ const int Infinity = -1;
const unsigned int RowMajorBit = 0x1;
/** \ingroup flags
*
* \deprecated
* means the expression should be evaluated by the calling expression */
const unsigned int EvalBeforeNestingBit = 0x2;
const unsigned int EvalBeforeNestingBit = 0x2; // FIXME deprecated
/** \ingroup flags
*
* \deprecated
* means the expression should be evaluated before any assignment */
const unsigned int EvalBeforeAssigningBit = 0x4;
const unsigned int EvalBeforeAssigningBit = 0x4; // FIXME deprecated
/** \ingroup flags
*

View File

@ -141,8 +141,10 @@ template<typename ExpressionType> class ArrayWrapper;
template<typename ExpressionType> class MatrixWrapper;
namespace internal {
#ifndef EIGEN_TEST_EVALUATROS
template<typename DecompositionType, typename Rhs> struct solve_retval_base;
template<typename DecompositionType, typename Rhs> struct solve_retval;
#endif
template<typename DecompositionType> struct kernel_retval_base;
template<typename DecompositionType> struct kernel_retval;
template<typename DecompositionType> struct image_retval_base;