From b44398033a7a6ed90b15f7631127c00535b19df4 Mon Sep 17 00:00:00 2001 From: hartmann Date: Mon, 28 Jun 1999 14:45:06 +0000 Subject: [PATCH] Revert Guido's changes on typename issues (why were they?) git-svn-id: https://svn.dealii.org/trunk@1484 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/solver_bicgstab.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/deal.II/lac/include/lac/solver_bicgstab.h b/deal.II/lac/include/lac/solver_bicgstab.h index 084b7de986..b0bbc428e1 100644 --- a/deal.II/lac/include/lac/solver_bicgstab.h +++ b/deal.II/lac/include/lac/solver_bicgstab.h @@ -49,11 +49,11 @@ class SolverBicgstab : public Solver * Solve primal problem only. */ template - /*typename*/ - Solver::ReturnState solve (const Matrix &A, - Vector &x, - const Vector &b, - const Preconditioner& precondition); + typename Solver::ReturnState + solve (const Matrix &A, + Vector &x, + const Vector &b, + const Preconditioner& precondition); protected: /** @@ -148,7 +148,8 @@ class SolverBicgstab : public Solver * The iteration loop itself. */ template - typename Solver::ReturnState iterate(const Preconditioner& precondition); + typename Solver::ReturnState + iterate(const Preconditioner& precondition); }; @@ -186,7 +187,7 @@ SolverBicgstab::start() template template -/*typename*/ Solver::ReturnState +typename Solver::ReturnState SolverBicgstab::iterate(const Preconditioner& precondition) { SolverControl::State state = SolverControl::iterate; -- 2.39.5