From: Ralf Hartmann Date: Tue, 24 Feb 2004 07:42:36 +0000 (+0000) Subject: Add some missing std. X-Git-Tag: v8.0.0~15760 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e07e7c16d3a6e4c4844efe0e7458d6ecb4275e43;p=dealii.git Add some missing std. git-svn-id: https://svn.dealii.org/trunk@8514 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/support_point_map.cc b/tests/deal.II/support_point_map.cc index eed302e04d..de2c3905c0 100644 --- a/tests/deal.II/support_point_map.cc +++ b/tests/deal.II/support_point_map.cc @@ -86,7 +86,7 @@ check () GridGenerator::hyper_ball(tr, Point(), 1); } else - GridGenerator::hyper_cube(tr, -1./sqrt(dim),1./sqrt(dim)); + GridGenerator::hyper_cube(tr, -1./std::sqrt(static_cast(dim)),1./std::sqrt(static_cast(dim))); if (dim != 1) { static const HyperBallBoundary boundary;