From ac321d3a90ffc9a7dcfdec0e88796ef4ef0915b1 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 11 Sep 2017 16:10:33 -0600 Subject: [PATCH] Mark an empty destructor as '=default'. --- include/deal.II/lac/solver_minres.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/include/deal.II/lac/solver_minres.h b/include/deal.II/lac/solver_minres.h index 3dc0a829ab..4dc50ae408 100644 --- a/include/deal.II/lac/solver_minres.h +++ b/include/deal.II/lac/solver_minres.h @@ -94,7 +94,7 @@ public: /** * Virtual destructor. */ - virtual ~SolverMinRes (); + virtual ~SolverMinRes () = default; /** * Solve the linear system $Ax=b$ for x. @@ -180,11 +180,6 @@ SolverMinRes::SolverMinRes (SolverControl &cn, {} -template -SolverMinRes::~SolverMinRes () -{} - - template double -- 2.39.5