From c9f74289f7daa89d66bc66138d026035627d944b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 29 Jun 2009 16:16:51 +0000 Subject: [PATCH] Avoid warning about unused parameters. git-svn-id: https://svn.dealii.org/trunk@18999 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/inhomogeneous_constraints.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/deal.II/inhomogeneous_constraints.cc b/tests/deal.II/inhomogeneous_constraints.cc index 17b3284f2a..26caf8a8ca 100644 --- a/tests/deal.II/inhomogeneous_constraints.cc +++ b/tests/deal.II/inhomogeneous_constraints.cc @@ -72,7 +72,7 @@ class LaplaceProblem void solve (); void create_coarse_grid (); void estimate_smoothness (Vector &smoothness_indicators) const; - void postprocess (const unsigned int cycle); + void postprocess (); Triangulation triangulation; @@ -487,7 +487,7 @@ void LaplaceProblem::solve () template -void LaplaceProblem::postprocess (const unsigned int cycle) +void LaplaceProblem::postprocess () { Vector estimated_error_per_cell (triangulation.n_active_cells()); KellyErrorEstimator::estimate (dof_handler, @@ -643,7 +643,7 @@ void LaplaceProblem::run () assemble_test_2 (); solve (); - postprocess (cycle); + postprocess (); } } -- 2.39.5