From: bangerth Date: Sun, 10 Sep 2006 12:47:09 +0000 (+0000) Subject: Avoid trouble with old gcc versions. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0254b9dde038bf782f142577500ebe06c0b4434a;p=dealii-svn.git Avoid trouble with old gcc versions. git-svn-id: https://svn.dealii.org/trunk@13887 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-24/step-24.cc b/deal.II/examples/step-24/step-24.cc index a58257175e..2ad21b7c8a 100644 --- a/deal.II/examples/step-24/step-24.cc +++ b/deal.II/examples/step-24/step-24.cc @@ -310,8 +310,9 @@ TATForwardProblem::TATForwardProblem () template void TATForwardProblem::setup_system () { - GridGenerator::hyper_ball (triangulation, Point(), 1.); - static const HyperBallBoundary boundary_description (Point(), 1.); + const Point center; + GridGenerator::hyper_ball (triangulation, center, 1.); + static const HyperBallBoundary boundary_description (center, 1.); triangulation.set_boundary (0,boundary_description); triangulation.refine_global (7);