From aeb80bf788129b9eca80630717644d32359e187c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 20 Nov 2015 20:05:31 -0600 Subject: [PATCH] Fix a test so that it also runs in 64-bit mode. --- tests/lac/linear_operator_08.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lac/linear_operator_08.cc b/tests/lac/linear_operator_08.cc index 00afe7e226..9f8a1d57db 100644 --- a/tests/lac/linear_operator_08.cc +++ b/tests/lac/linear_operator_08.cc @@ -260,8 +260,8 @@ int main() { deallog << "PreconditionPSOR" << std::endl; typedef PreconditionPSOR< SparseMatrix > PREC; - std::vector permutation(b.size()); - std::vector inverse_permutation(b.size()); + std::vector permutation(b.size()); + std::vector inverse_permutation(b.size()); test_preconditioner(A, b, typename PREC::AdditionalData(permutation, inverse_permutation)); -- 2.39.5