From: Timo Heister Date: Thu, 3 Feb 2022 15:58:02 +0000 (-0500) Subject: PreconditionIdentity: move implementation out of declaration X-Git-Tag: v9.4.0-rc1~530^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51af3f6959bc2abbf39e095f1a039ba980738e1e;p=dealii.git PreconditionIdentity: move implementation out of declaration --- diff --git a/include/deal.II/lac/precondition.h b/include/deal.II/lac/precondition.h index 142993d20d..e7c085a392 100644 --- a/include/deal.II/lac/precondition.h +++ b/include/deal.II/lac/precondition.h @@ -147,8 +147,7 @@ public: * preconditioner to be handed to a smoother. This does nothing. */ void - clear() - {} + clear(); /** * Return the dimension of the codomain (or range) space. Note that the @@ -1896,6 +1895,14 @@ PreconditionIdentity::Tvmult_add(VectorType &dst, const VectorType &src) const dst += src; } + + +inline void +PreconditionIdentity::clear() +{} + + + inline PreconditionIdentity::size_type PreconditionIdentity::m() const {