mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-06 14:14:46 +08:00
Some bit flags and internal structures are deprecated
This commit is contained in:
parent
9621333545
commit
b2e1453e1e
@ -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
|
||||
*
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user