From f34dd04ce17adce17517b715247e2e91230db41d Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 19 Apr 2002 14:45:05 +0000 Subject: [PATCH] . git-svn-id: https://svn.dealii.org/trunk@5697 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-14/step-14.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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; }; -- 2.39.5