From 0eb347f6f6621a6538e8989303cab023d83a1c60 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 2 Mar 2006 19:33:38 +0000 Subject: [PATCH] Add a default constructor to KInverse to calm down icc9. git-svn-id: https://svn.dealii.org/trunk@12527 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-20/step-20.cc | 2 ++ deal.II/examples/step-7/step-7.cc | 2 ++ 2 files changed, 4 insertions(+) diff --git a/deal.II/examples/step-20/step-20.cc b/deal.II/examples/step-20/step-20.cc index 81d4bdf64e..fa997182f7 100644 --- a/deal.II/examples/step-20/step-20.cc +++ b/deal.II/examples/step-20/step-20.cc @@ -278,6 +278,8 @@ template class KInverse : public TensorFunction<2,dim> { public: + KInverse () : TensorFunction<2,dim>() {} + virtual void value_list (const std::vector > &points, std::vector > &values) const; }; diff --git a/deal.II/examples/step-7/step-7.cc b/deal.II/examples/step-7/step-7.cc index 8ace17be92..0922d5fd71 100644 --- a/deal.II/examples/step-7/step-7.cc +++ b/deal.II/examples/step-7/step-7.cc @@ -362,6 +362,8 @@ class RightHandSide : public Function, protected SolutionBase { public: + RightHandSide () : Function() {}; + virtual double value (const Point &p, const unsigned int component = 0) const; }; -- 2.39.5