mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-05-03 01:04:23 +08:00
Remove not needed template keyword.
This commit is contained in:
parent
486ca277a0
commit
0f0580b97c
@ -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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user