aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sparse_product.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-02-15 09:35:23 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-02-15 09:35:23 +0100
commit4b6b3f310f5b651d82a65eb546e61d70c09407c5 (patch)
tree4d0631070b5b0bf08f0da8d18f0033b0c06e98d8 /test/sparse_product.cpp
parentcd606bbc943c4862cf0cf596d3ef97aae32c2887 (diff)
Fix a few Index to int buggy conversions
Diffstat (limited to 'test/sparse_product.cpp')
-rw-r--r--test/sparse_product.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sparse_product.cpp b/test/sparse_product.cpp
index 664e33887..948b0026b 100644
--- a/test/sparse_product.cpp
+++ b/test/sparse_product.cpp
@@ -244,6 +244,7 @@ void test_sparse_product()
CALL_SUBTEST_1( (sparse_product<SparseMatrix<double,RowMajor> >()) );
CALL_SUBTEST_2( (sparse_product<SparseMatrix<std::complex<double>, ColMajor > >()) );
CALL_SUBTEST_2( (sparse_product<SparseMatrix<std::complex<double>, RowMajor > >()) );
+ CALL_SUBTEST_3( (sparse_product<SparseMatrix<float,ColMajor,long int> >()) );
CALL_SUBTEST_4( (sparse_product_regression_test<SparseMatrix<double,RowMajor>, Matrix<double, Dynamic, Dynamic, RowMajor> >()) );
}
}