From: wolf Date: Thu, 9 Jan 2003 20:23:13 +0000 (+0000) Subject: Avoid unnecessary semicola. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1f88935b7a4b9c067f4a80ccfb2596de6fb61a8;p=dealii-svn.git Avoid unnecessary semicola. git-svn-id: https://svn.dealii.org/trunk@6902 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/solver_gmres.h b/deal.II/lac/include/lac/solver_gmres.h index 4caf629948..ce7d6628d1 100644 --- a/deal.II/lac/include/lac/solver_gmres.h +++ b/deal.II/lac/include/lac/solver_gmres.h @@ -303,7 +303,7 @@ SolverGMRES::SolverGMRES (SolverControl &cn, const AdditionalData &data) : Solver (cn,mem), additional_data(data) -{}; +{} template @@ -530,7 +530,7 @@ unsigned int dim = 0; throw SolverControl::NoConvergence (this->control().last_step(), this->control().last_value()); // otherwise exit as normal -}; +} template @@ -542,7 +542,7 @@ SolverGMRES::criterion () // of gmres Assert (false, ExcInternalError()); return 0; -}; +} /*---------------------------- solver_pgmres.h ---------------------------*/