From 51af3f6959bc2abbf39e095f1a039ba980738e1e Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Thu, 3 Feb 2022 10:58:02 -0500 Subject: [PATCH] PreconditionIdentity: move implementation out of declaration --- include/deal.II/lac/precondition.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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 { -- 2.39.5