From 1e0c32158b433a473a7cdf03df3e2e60ef40c64f Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Tue, 14 May 2019 05:40:19 +0200 Subject: [PATCH] Avoid ICC-19 warning --- examples/step-61/step-61.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/examples/step-61/step-61.cc b/examples/step-61/step-61.cc index e4da2bb76d..465b88ed54 100644 --- a/examples/step-61/step-61.cc +++ b/examples/step-61/step-61.cc @@ -119,6 +119,10 @@ namespace Step61 class Coefficient : public TensorFunction<2, dim> { public: + Coefficient() + : TensorFunction<2, dim>() + {} + virtual void value_list(const std::vector> &points, std::vector> &values) const override; }; @@ -164,6 +168,10 @@ namespace Step61 class RightHandSide : public Function { public: + RightHandSide() + : Function() + {} + virtual double value(const Point & p, const unsigned int component = 0) const override; }; @@ -218,6 +226,10 @@ namespace Step61 class ExactVelocity : public TensorFunction<1, dim> { public: + ExactVelocity() + : TensorFunction<1, dim>() + {} + virtual Tensor<1, dim> value(const Point &p) const override; }; -- 2.39.5