From e5aa6a466b609c07c51c55d929ca6f23201f9724 Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Tue, 15 Jun 2010 09:57:41 +0200 Subject: Fixed 64bit/Index related warnings in the matrix functions module. --- unsupported/test/matrix_exponential.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unsupported/test/matrix_exponential.cpp') diff --git a/unsupported/test/matrix_exponential.cpp b/unsupported/test/matrix_exponential.cpp index 66e52e100..69f2af044 100644 --- a/unsupported/test/matrix_exponential.cpp +++ b/unsupported/test/matrix_exponential.cpp @@ -122,8 +122,8 @@ void randomTest(const MatrixType& m, double tol) /* this test covers the following files: Inverse.h */ - int rows = m.rows(); - int cols = m.cols(); + MatrixType::Index rows = m.rows(); + MatrixType::Index cols = m.cols(); MatrixType m1(rows, cols), m2(rows, cols), m3(rows, cols), identity = MatrixType::Identity(rows, rows); -- cgit v1.2.3