From: Joerg Frohne Date: Fri, 8 Feb 2013 01:18:18 +0000 (+0000) Subject: purge two warnings caused by an old compress function parameter X-Git-Tag: v8.0.0~1401 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=897c4319d0d88c3b2b8f217a21e26e40bbf788f1;p=dealii.git purge two warnings caused by an old compress function parameter git-svn-id: https://svn.dealii.org/trunk@28273 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-42/step-42.cc b/deal.II/examples/step-42/step-42.cc index 9deab8a19b..8ecba5a16a 100644 --- a/deal.II/examples/step-42/step-42.cc +++ b/deal.II/examples/step-42/step-42.cc @@ -689,7 +689,7 @@ namespace Step42 }; system_matrix_newton.compress (); - system_rhs_newton.compress (Add); + system_rhs_newton.compress (); } template @@ -922,7 +922,7 @@ namespace Step42 active_set_locally_owned.add_index (index_z); } } - distributed_solution.compress(Insert); + distributed_solution.compress(); unsigned int sum_contact_constraints = Utilities::MPI::sum(active_set_locally_owned.n_elements (), mpi_communicator);