From: wolf Date: Thu, 19 Jul 2001 08:06:20 +0000 (+0000) Subject: New namespacing of functions. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc00dc47477787a9fe6efa1522199e8ee8b20375;p=dealii-svn.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);