From: wolf Date: Fri, 19 Apr 2002 14:45:05 +0000 (+0000) Subject: . X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f34dd04ce17adce17517b715247e2e91230db41d;p=dealii-svn.git . git-svn-id: https://svn.dealii.org/trunk@5697 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-14/step-14.cc b/deal.II/examples/step-14/step-14.cc index a4ab26478b..0283a294e0 100644 --- a/deal.II/examples/step-14/step-14.cc +++ b/deal.II/examples/step-14/step-14.cc @@ -706,13 +706,12 @@ namespace LaplaceSolver }; - - - template class Solution : public Function { public: + Solution () : Function () {}; + virtual double value (const Point &p, const unsigned int component) const; }; @@ -736,6 +735,8 @@ template class RightHandSide : public Function { public: + RightHandSide () {}; + virtual double value (const Point &p, const unsigned int component) const; };