From 0f0580b97c4209faeb01f415523fab5863e742b1 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 17 Sep 2014 09:55:44 +0200 Subject: [PATCH] Remove not needed template keyword. --- Eigen/src/SparseCore/SparseTriangularView.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/SparseCore/SparseTriangularView.h b/Eigen/src/SparseCore/SparseTriangularView.h index 87f4ab18d..3df7a4cd4 100644 --- a/Eigen/src/SparseCore/SparseTriangularView.h +++ b/Eigen/src/SparseCore/SparseTriangularView.h @@ -50,7 +50,7 @@ protected: EIGEN_STRONG_INLINE void _solve_impl(const RhsType &rhs, DstType &dst) const { if(!(internal::is_same::value && internal::extract_data(dst) == internal::extract_data(rhs))) dst = rhs; - this->template solveInPlace(dst); + this->solveInPlace(dst); } #endif // EIGEN_TEST_EVALUATORS