From: Wolfgang Bangerth Date: Thu, 2 Mar 2006 19:33:38 +0000 (+0000) Subject: Add a default constructor to KInverse to calm down icc9. X-Git-Tag: v8.0.0~12158 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0eb347f6f6621a6538e8989303cab023d83a1c60;p=dealii.git Add a default constructor to KInverse to calm down icc9. git-svn-id: https://svn.dealii.org/trunk@12527 0785d39b-7218-0410-832d-ea1e28bc413d --- 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; };