aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/matrix_exponential.cpp
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-06-15 09:57:41 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-06-15 09:57:41 +0200
commite5aa6a466b609c07c51c55d929ca6f23201f9724 (patch)
tree826fc69c3beb62b7d04e14d6f4406f69ed857596 /unsupported/test/matrix_exponential.cpp
parent0afb1e80c7c3c924231cf8da15bf83213b60855b (diff)
Fixed 64bit/Index related warnings in the matrix functions module.
Diffstat (limited to 'unsupported/test/matrix_exponential.cpp')
-rw-r--r--unsupported/test/matrix_exponential.cpp4
1 files changed, 2 insertions, 2 deletions
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);