MSVC fix; the compiler failed to detect the correct overload.

This commit is contained in:
Hauke Heibel 2013-02-28 11:38:34 +01:00
parent 5882f1631d
commit 83aac6d54c

View File

@ -19,9 +19,9 @@ namespace Eigen {
namespace internal {
template <typename Scalar,int SizeAtCompileTime, typename Index>
template <typename Scalar,int Rows, int Cols, typename Index>
void lmqrsolv(
Matrix<Scalar,SizeAtCompileTime,SizeAtCompileTime> &s,
Matrix<Scalar,Rows,Cols> &s,
const PermutationMatrix<Dynamic,Dynamic,Index> &iPerm,
const Matrix<Scalar,Dynamic,1> &diag,
const Matrix<Scalar,Dynamic,1> &qtb,