From: maier Date: Sun, 20 Oct 2013 21:34:20 +0000 (+0000) Subject: Bugfix: Correct a C&P error in solver_relaxation.h X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4da9d97af451131eb203c3e2221968f10fa258df;p=dealii-svn.git Bugfix: Correct a C&P error in solver_relaxation.h git-svn-id: https://svn.dealii.org/trunk@31356 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/solver_relaxation.h b/deal.II/include/deal.II/lac/solver_relaxation.h index 62598b9dbe..547c67bc4d 100644 --- a/deal.II/include/deal.II/lac/solver_relaxation.h +++ b/deal.II/include/deal.II/lac/solver_relaxation.h @@ -152,8 +152,8 @@ SolverRelaxation::solve ( // in case of failure: throw exception if (this->control().last_check() != SolverControl::success) - AssertThrow(false, SolverControl::NoConvergence (control.last_step(), - control.last_value())); + AssertThrow(false, SolverControl::NoConvergence (this->control().last_step(), + this->control().last_value())); // otherwise exit as normal }