aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/spqr_support.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-02-16 13:19:05 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-02-16 13:19:05 +0100
commitaa6c516ec17fb44dff85b1abf3a1b05d58d3bc01 (patch)
treecd0b6ce4d023ff6734beecc167749d00f301c017 /test/spqr_support.cpp
parentfc202bab398ed9b78ef8452f8e4ef35e233965f6 (diff)
Fix many long to int conversion warnings:
- fix usage of Index (API) versus StorageIndex (when multiple indexes are stored) - use StorageIndex(val) when the input has already been check - use internal::convert_index<StorageIndex>(val) when val is potentially unsafe (directly comes from user input)
Diffstat (limited to 'test/spqr_support.cpp')
-rw-r--r--test/spqr_support.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spqr_support.cpp b/test/spqr_support.cpp
index 901c42c40..baa25a0c2 100644
--- a/test/spqr_support.cpp
+++ b/test/spqr_support.cpp
@@ -37,7 +37,7 @@ template<typename Scalar> void test_spqr_scalar()
SPQR<MatrixType> solver;
generate_sparse_rectangular_problem(A,dA);
- int m = A.rows();
+ Index m = A.rows();
b = DenseVector::Random(m);
solver.compute(A);
if (solver.info() != Success)