Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PreconditionIdentity: move implementation out of declaration #13333

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 9 additions & 2 deletions include/deal.II/lac/precondition.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,7 @@ class PreconditionIdentity : public Subscriptor
* 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
Expand Down Expand Up @@ -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
{
Expand Down