Disable solve_ret_val like mechanism with evaluator enabled

This commit is contained in:
Gael Guennebaud 2014-09-01 18:32:59 +02:00
parent 1f398dfc82
commit 47829e2d16
2 changed files with 7 additions and 1 deletions

View File

@ -10,6 +10,8 @@
#ifndef EIGEN_MISC_SOLVE_H
#define EIGEN_MISC_SOLVE_H
#ifndef EIGEN_TEST_EVALUATORS
namespace Eigen {
namespace internal {
@ -72,5 +74,5 @@ template<typename _DecompositionType, typename Rhs> struct solve_retval_base
: Base(dec, rhs) {}
} // end namespace Eigen
#endif // EIGEN_TEST_EVALUATORS
#endif // EIGEN_MISC_SOLVE_H

View File

@ -10,6 +10,8 @@
#ifndef EIGEN_SPARSE_SOLVE_H
#define EIGEN_SPARSE_SOLVE_H
#ifndef EIGEN_TEST_EVALUATORS
namespace Eigen {
namespace internal {
@ -127,4 +129,6 @@ template<typename DecompositionType, typename Rhs, typename Guess> struct solve_
} // end namespace Eigen
#endif // EIGEN_TEST_EVALUATORS
#endif // EIGEN_SPARSE_SOLVE_H