From dd9f8073b22321035858f38c3855276b8c73ceed Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Fri, 22 Mar 2013 02:55:41 +0000 Subject: [PATCH] fix warning git-svn-id: https://svn.dealii.org/trunk@28979 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-36/step-36.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/examples/step-36/step-36.cc b/deal.II/examples/step-36/step-36.cc index 743049b17e..e11e6fab39 100644 --- a/deal.II/examples/step-36/step-36.cc +++ b/deal.II/examples/step-36/step-36.cc @@ -281,8 +281,8 @@ namespace Step36 // At the end of the function, we tell PETSc that the matrices have now // been fully assembled and that the sparse matrix representation can now // be compressed as no more entries will be added: - stiffness_matrix.compress (); - mass_matrix.compress (); + stiffness_matrix.compress (VectorOperation::add); + mass_matrix.compress (VectorOperation::add); } -- 2.39.5