From: Wolfgang Bangerth Date: Thu, 19 Jul 2001 08:06:20 +0000 (+0000) Subject: New namespacing of functions. X-Git-Tag: v8.0.0~18941 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5c7be3e2a26f52634fbc3fd2e269ca92b7dfd75;p=dealii.git New namespacing of functions. git-svn-id: https://svn.dealii.org/trunk@4857 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/boundaries.cc b/tests/deal.II/boundaries.cc index 0a5d3cea68..b5b3b39f36 100644 --- a/tests/deal.II/boundaries.cc +++ b/tests/deal.II/boundaries.cc @@ -120,7 +120,7 @@ check () // FE2: a linear element, to make // things simple fe_list.push_back (new FE_Q (1)); - function_list.push_back (new SquareFunction()); + function_list.push_back (new Functions::SquareFunction()); // check all of them for (unsigned int i=0; i tr; - CosineFunction cosine; + Functions::CosineFunction cosine; if (dim==2) GridGenerator::hyper_ball(tr, Point(), 1);