aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sparse_permutations.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-10-22 21:58:18 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-10-22 21:58:18 +0200
commit71b473aab1ee71185bd91e51ee0eb93fd047a847 (patch)
tree530f6c109582d14f43eb6f50403247f6e3c56fd4 /test/sparse_permutations.cpp
parentebc1af1683a31f75a71e15fef0703d552cf9512b (diff)
Remove invalid typename keyword
Diffstat (limited to 'test/sparse_permutations.cpp')
-rw-r--r--test/sparse_permutations.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/sparse_permutations.cpp b/test/sparse_permutations.cpp
index c2e1d84a3..8c257a3fd 100644
--- a/test/sparse_permutations.cpp
+++ b/test/sparse_permutations.cpp
@@ -228,9 +228,9 @@ void test_sparse_permutations()
CALL_SUBTEST_2(( sparse_permutations_all<std::complex<double> >(s) ));
}
- VERIFY((internal::is_same<typename internal::permutation_matrix_product<SparseMatrix<double>,OnTheRight,false,SparseShape>::ReturnType,
- typename internal::nested_eval<Product<SparseMatrix<double>,PermutationMatrix<Dynamic,Dynamic>,AliasFreeProduct>,1>::type>::value));
+ VERIFY((internal::is_same<internal::permutation_matrix_product<SparseMatrix<double>,OnTheRight,false,SparseShape>::ReturnType,
+ internal::nested_eval<Product<SparseMatrix<double>,PermutationMatrix<Dynamic,Dynamic>,AliasFreeProduct>,1>::type>::value));
- VERIFY((internal::is_same<typename internal::permutation_matrix_product<SparseMatrix<double>,OnTheLeft,false,SparseShape>::ReturnType,
- typename internal::nested_eval<Product<PermutationMatrix<Dynamic,Dynamic>,SparseMatrix<double>,AliasFreeProduct>,1>::type>::value));
+ VERIFY((internal::is_same<internal::permutation_matrix_product<SparseMatrix<double>,OnTheLeft,false,SparseShape>::ReturnType,
+ internal::nested_eval<Product<PermutationMatrix<Dynamic,Dynamic>,SparseMatrix<double>,AliasFreeProduct>,1>::type>::value));
}