From: Wolfgang Bangerth Date: Sat, 21 Nov 2015 02:05:31 +0000 (-0600) Subject: Fix a test so that it also runs in 64-bit mode. X-Git-Tag: v8.4.0-rc2~213^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aeb80bf788129b9eca80630717644d32359e187c;p=dealii.git Fix a test so that it also runs in 64-bit mode. --- 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));