From 27576f311ef69bee945ba4192fc2469acffec15d Mon Sep 17 00:00:00 2001 From: wolf Date: Sun, 2 Feb 2003 20:43:50 +0000 Subject: [PATCH] Fix Ralf's omission of std:: git-svn-id: https://svn.dealii.org/trunk@7001 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/solver_gmres.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5