From 807a27d218b625d7cfd14da7dc6c936f1bedd094 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Mon, 29 Jun 2020 22:16:50 -0400 Subject: [PATCH] Remove deprecated SolverFGMRES::AdditionalData constructor --- include/deal.II/lac/solver_gmres.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/include/deal.II/lac/solver_gmres.h b/include/deal.II/lac/solver_gmres.h index 52cafd89e1..7e359925ab 100644 --- a/include/deal.II/lac/solver_gmres.h +++ b/include/deal.II/lac/solver_gmres.h @@ -471,18 +471,6 @@ public: : max_basis_size(max_basis_size) {} - /** - * @deprecated: use the other constructor as the second argument is - unused. - */ - DEAL_II_DEPRECATED - AdditionalData(const unsigned int max_basis_size, - const bool use_default_residual) - : max_basis_size(max_basis_size) - { - (void)use_default_residual; - } - /** * Maximum basis size. */ -- 2.39.5