From 40c7bd71ec42b36ce0af5241f23d135b2e5e514f Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 26 Jun 2001 14:03:18 +0000 Subject: [PATCH] Fix missing std:: git-svn-id: https://svn.dealii.org/trunk@4761 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/helmholtz1.th | 2 +- tests/deal.II/mg.cc | 2 +- tests/deal.II/mglocal.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/deal.II/helmholtz1.th b/tests/deal.II/helmholtz1.th index 157e1810b0..70c6c0f342 100644 --- a/tests/deal.II/helmholtz1.th +++ b/tests/deal.II/helmholtz1.th @@ -15,7 +15,7 @@ Helmholtz::build_all(MATRIX& A, Vector elvec(fe_dofs); FullMatrix elmat(fe_dofs); - vector indices(fe_dofs); + std::vector indices(fe_dofs); //////////////////////////////////////////////////// // Loop for computing the element matrices diff --git a/tests/deal.II/mg.cc b/tests/deal.II/mg.cc index ec56a1ee52..453a58ca1e 100644 --- a/tests/deal.II/mg.cc +++ b/tests/deal.II/mg.cc @@ -167,7 +167,7 @@ Multigrid<2> multigrid(mgdof, hanging_nodes, mgstruct, mgA, transfer); catch (const SolverControl::NoConvergence& e) { deallog << "Step " << e.last_step - << " Residual " << e.last_residual << endl; + << " Residual " << e.last_residual << std::endl; } } diff --git a/tests/deal.II/mglocal.cc b/tests/deal.II/mglocal.cc index c8eaacb5fa..91b2da484b 100644 --- a/tests/deal.II/mglocal.cc +++ b/tests/deal.II/mglocal.cc @@ -65,7 +65,7 @@ class RHSFunction extern void write_gnuplot (const MGDoFHandler<2>& dofs, const Vector& v, unsigned int level, - ostream &out); + std::ostream &out); int main() { -- 2.39.5