From: Wolfgang Bangerth Date: Sun, 10 Sep 2006 12:47:09 +0000 (+0000) Subject: Avoid trouble with old gcc versions. X-Git-Tag: v8.0.0~11085 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15e21ca6783eef3302e0e932de98e4b3efcd68ed;p=dealii.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);