From 3b93b1afb3f5bcc9c27a0ca3077a3645d230c036 Mon Sep 17 00:00:00 2001 From: Christoph Hertzberg Date: Tue, 31 Mar 2015 00:42:14 +0200 Subject: [PATCH] Addendum to last patch: k is Index and not int (transplanted from 3238ca6abcce0f26035629aebe4e9018079a6917 ) --- test/real_qz.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/real_qz.cpp b/test/real_qz.cpp index 555dcbcb4..a1766c6d9 100644 --- a/test/real_qz.cpp +++ b/test/real_qz.cpp @@ -27,7 +27,7 @@ template void real_qz(const MatrixType& m) // Regression test for bug 985: Randomly set rows or columns to zero - Index k=internal::random(0, dim-1); + Index k=internal::random(0, dim-1); switch(internal::random(0,10)) { case 0: A.row(k).setZero(); break;