From 4233447d9ea29fc973c06ca2ec493252f2caee81 Mon Sep 17 00:00:00 2001 From: frohne Date: Fri, 8 Feb 2013 01:18:18 +0000 Subject: [PATCH] purge two warnings caused by an old compress function parameter git-svn-id: https://svn.dealii.org/trunk@28273 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-42/step-42.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.39.5