Removed non-standard conforming (17.4.3.1.2/1) leading underscore.

(grafted from b1f4601bf900be97e5f7ae54cb3e2050b256e915
)
This commit is contained in:
Hauke Heibel 2013-07-30 08:05:10 +02:00
parent f707f15842
commit af74b16b0f

View File

@ -219,9 +219,9 @@ class SparseLU : public internal::SparseLUImpl<typename _MatrixType::Scalar, typ
}
template<typename Rhs, typename Dest>
bool _solve(const MatrixBase<Rhs> &B, MatrixBase<Dest> &_X) const
bool _solve(const MatrixBase<Rhs> &B, MatrixBase<Dest> &X_base) const
{
Dest& X(_X.derived());
Dest& X(X_base.derived());
eigen_assert(m_factorizationIsOk && "The matrix should be factorized first");
EIGEN_STATIC_ASSERT((Dest::Flags&RowMajorBit)==0,
THIS_METHOD_IS_ONLY_FOR_COLUMN_MAJOR_MATRICES);