From 7f06cde1daf710ed4046ccdf86bf450c1efe0bf5 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 29 Sep 2011 15:36:08 +0000 Subject: [PATCH] Qualify with std:: where necessary. git-svn-id: https://svn.dealii.org/trunk@24466 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/dof_renumbering_zorder_01.cc | 10 +++++----- tests/deal.II/dof_renumbering_zorder_02.cc | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/deal.II/dof_renumbering_zorder_01.cc b/tests/deal.II/dof_renumbering_zorder_01.cc index fac2b15612..193e25fbec 100644 --- a/tests/deal.II/dof_renumbering_zorder_01.cc +++ b/tests/deal.II/dof_renumbering_zorder_01.cc @@ -2,7 +2,7 @@ // $Id: dof_renumbering_02.cc 23710 2011-05-17 04:50:10Z bangerth $ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2003, 2004, 2007, 2008, 2010 by the deal.II authors +// Copyright (C) 2000, 2001, 2003, 2004, 2007, 2008, 2010, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -80,17 +80,17 @@ check () dof.distribute_dofs(fe); std::ostringstream o1, o2; - + print_dofs(dof, o1); - deallog << "**" << endl; + deallog << "**" << std::endl; DoFRenumbering::hierarchical(dof); print_dofs(dof, o2); if (o1.str()==o2.str()) - deallog << "OK" << endl; - + deallog << "OK" << std::endl; + } int main () diff --git a/tests/deal.II/dof_renumbering_zorder_02.cc b/tests/deal.II/dof_renumbering_zorder_02.cc index bb6af0d395..e8eae99c9d 100644 --- a/tests/deal.II/dof_renumbering_zorder_02.cc +++ b/tests/deal.II/dof_renumbering_zorder_02.cc @@ -2,7 +2,7 @@ // $Id: dof_renumbering_02.cc 23710 2011-05-17 04:50:10Z bangerth $ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2003, 2004, 2007, 2008, 2010 by the deal.II authors +// Copyright (C) 2000, 2001, 2003, 2004, 2007, 2008, 2010, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -84,10 +84,10 @@ check () dof.distribute_dofs(fe); std::ostringstream o1, o2, o3; - + print_dofs(dof, o1); deallog << o1.str(); - deallog << "**" << endl; + deallog << "**" << std::endl; DoFRenumbering::hierarchical(dof); @@ -95,17 +95,17 @@ check () deallog << o2.str(); if (o1.str()!=o2.str()) - deallog << "OK" << endl; + deallog << "OK" << std::endl; else Assert(false, ExcInternalError()); DoFRenumbering::hierarchical(dof); print_dofs(dof, o3); - + // doing renumbering twice does not change the result?! if (o2.str()==o3.str()) - deallog << "OK" << endl; + deallog << "OK" << std::endl; else Assert(false, ExcInternalError()); -- 2.39.5