From: Wolfgang Bangerth Date: Sun, 2 Feb 2003 20:43:50 +0000 (+0000) Subject: Fix Ralf's omission of std:: X-Git-Tag: v8.0.0~17010 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61d5395b97ade7ad9060ed80842aa7943617f45a;p=dealii.git Fix Ralf's omission of std:: git-svn-id: https://svn.dealii.org/trunk@7001 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 6869a3f406..acc35638c6 100644 --- a/deal.II/lac/include/lac/solver_gmres.h +++ b/deal.II/lac/include/lac/solver_gmres.h @@ -484,7 +484,7 @@ SolverGMRES::solve (const MATRIX &A, } else { - deallog << "default_res=" << rho << endl; + deallog << "default_res=" << rho << std::endl; if (left_precondition) { @@ -579,7 +579,7 @@ SolverGMRES::solve (const MATRIX &A, accumulated_iterations, rho); else { - deallog << "default_res=" << rho << endl; + deallog << "default_res=" << rho << std::endl; ::Vector h_(dim); *x_=x;