From 7ac52b1ea4c9213507187dd9ff09e4d088d2c488 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth 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