From 5cde3121a03a45c1790c3f21375c13fd6455e06f Mon Sep 17 00:00:00 2001 From: Oliver Sander <oliver.sander@tu-dresden.de> Date: Thu, 27 Jun 2019 10:32:35 +0200 Subject: [PATCH] Use more 'override' --- .../transferoperators/truncatedcompressedmgtransfer.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dune/solvers/transferoperators/truncatedcompressedmgtransfer.hh b/dune/solvers/transferoperators/truncatedcompressedmgtransfer.hh index 24160876..e23fef46 100644 --- a/dune/solvers/transferoperators/truncatedcompressedmgtransfer.hh +++ b/dune/solvers/transferoperators/truncatedcompressedmgtransfer.hh @@ -46,13 +46,13 @@ public: using Base::Base; /** \brief Restrict level fL of f and store the result in level cL of t */ - void restrict(const VectorType& f, VectorType &t) const; + void restrict(const VectorType& f, VectorType &t) const override; /** \brief Prolong level cL of f and store the result in level fL of t */ - void prolong(const VectorType& f, VectorType &t) const; + void prolong(const VectorType& f, VectorType &t) const override; /** \brief Galerkin assemble a coarse stiffness matrix */ - void galerkinRestrict(const MatrixType& fineMat, MatrixType& coarseMat) const; + void galerkinRestrict(const MatrixType& fineMat, MatrixType& coarseMat) const override; }; -- GitLab