From: heister Date: Fri, 22 Mar 2013 02:55:41 +0000 (+0000) Subject: fix warning X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=630736180c1485044f76e07a606afaf3e4152849;p=dealii-svn.git fix warning git-svn-id: https://svn.dealii.org/trunk@28979 0785d39b-7218-0410-832d-ea1e28bc413d --- 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); }