Remove not needed template keyword.

This commit is contained in:
Gael Guennebaud 2014-09-17 09:55:44 +02:00
parent 486ca277a0
commit 0f0580b97c

View File

@ -50,7 +50,7 @@ protected:
EIGEN_STRONG_INLINE void _solve_impl(const RhsType &rhs, DstType &dst) const { EIGEN_STRONG_INLINE void _solve_impl(const RhsType &rhs, DstType &dst) const {
if(!(internal::is_same<RhsType,DstType>::value && internal::extract_data(dst) == internal::extract_data(rhs))) if(!(internal::is_same<RhsType,DstType>::value && internal::extract_data(dst) == internal::extract_data(rhs)))
dst = rhs; dst = rhs;
this->template solveInPlace(dst); this->solveInPlace(dst);
} }
#endif // EIGEN_TEST_EVALUATORS #endif // EIGEN_TEST_EVALUATORS