From 234c9e2266be2800e4a756dc7e5921df3be7100a Mon Sep 17 00:00:00 2001 From: heister Date: Fri, 22 Mar 2013 02:58:01 +0000 Subject: [PATCH] fix warning git-svn-id: https://svn.dealii.org/trunk@28980 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-17/step-17.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/examples/step-17/step-17.cc b/deal.II/examples/step-17/step-17.cc index f90d693cab..34cfece843 100644 --- a/deal.II/examples/step-17/step-17.cc +++ b/deal.II/examples/step-17/step-17.cc @@ -508,7 +508,7 @@ namespace Step17 } // Now compress the vector and the system matrix: - system_matrix.compress(); + system_matrix.compress(VectorOperation::add); system_rhs.compress(VectorOperation::add); // The global matrix and right hand side vectors have now been -- 2.39.5