From: Wolfgang Bangerth Date: Tue, 26 Jun 2001 14:03:18 +0000 (+0000) Subject: Fix missing std:: X-Git-Tag: v8.0.0~19033 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d382b33a395ab7733eb3e60be817c1472a8645ef;p=dealii.git Fix missing std:: git-svn-id: https://svn.dealii.org/trunk@4761 0785d39b-7218-0410-832d-ea1e28bc413d --- 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() {