From 4480e4ea03450b80b837c317ab059e92a7a98c63 Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 24 May 2001 08:30:12 +0000 Subject: [PATCH] Revert to using default args. git-svn-id: https://svn.dealii.org/trunk@4728 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-6/step-6.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/deal.II/examples/step-6/step-6.cc b/deal.II/examples/step-6/step-6.cc index caeb14a9b1..c0e2ede8cd 100644 --- a/deal.II/examples/step-6/step-6.cc +++ b/deal.II/examples/step-6/step-6.cc @@ -861,7 +861,10 @@ void LaplaceProblem::run () // as well. We place the // center of the circle at // the origin and have the - // radius be one. + // radius be one (these are + // the two hidden arguments + // to the function, which + // have default values). // // You will notice by // looking at the coarse @@ -877,7 +880,7 @@ void LaplaceProblem::run () // any space dimension, // which was not the case // before. - GridGenerator::hyper_ball (triangulation, Point(), 1); + GridGenerator::hyper_ball (triangulation); static const HyperBallBoundary boundary; triangulation.set_boundary (0, boundary); -- 2.39.5