From: wolf Date: Sat, 26 Apr 2003 16:10:31 +0000 (+0000) Subject: Unnecessary ; removed. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8018a84ed6ef2da201df07bf64ae189df3860e51;p=dealii-svn.git Unnecessary ; removed. git-svn-id: https://svn.dealii.org/trunk@7481 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/solver_minres.h b/deal.II/lac/include/lac/solver_minres.h index e38a07e9a7..5dc2e83083 100644 --- a/deal.II/lac/include/lac/solver_minres.h +++ b/deal.II/lac/include/lac/solver_minres.h @@ -161,7 +161,7 @@ double SolverMinRes::criterion() { return res2; -}; +} template @@ -361,7 +361,7 @@ SolverMinRes::solve (const MATRIX &A, throw SolverControl::NoConvergence (this->control().last_step(), this->control().last_value()); // otherwise exit as normal -}; +} #endif