From: wolf Date: Sun, 2 Feb 2003 20:43:50 +0000 (+0000) Subject: Fix Ralf's omission of std:: X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27576f311ef69bee945ba4192fc2469acffec15d;p=dealii-svn.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;