| 127 | } |
| 128 | |
| 129 | void test_sparse_ref() |
| 130 | { |
| 131 | for(int i = 0; i < g_repeat; i++) { |
| 132 | CALL_SUBTEST_1( check_const_correctness(SparseMatrix<float>()) ); |
| 133 | CALL_SUBTEST_1( check_const_correctness(SparseMatrix<double,RowMajor>()) ); |
| 134 | CALL_SUBTEST_2( call_ref() ); |
| 135 | |
| 136 | CALL_SUBTEST_3( check_const_correctness(SparseVector<float>()) ); |
| 137 | CALL_SUBTEST_3( check_const_correctness(SparseVector<double,RowMajor>()) ); |
| 138 | } |
| 139 | } |
nothing calls this directly
no test coverage detected