]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Qualify with std:: where necessary.
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Thu, 29 Sep 2011 15:36:08 +0000 (15:36 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Thu, 29 Sep 2011 15:36:08 +0000 (15:36 +0000)
git-svn-id: https://svn.dealii.org/trunk@24466 0785d39b-7218-0410-832d-ea1e28bc413d

tests/deal.II/dof_renumbering_zorder_01.cc
tests/deal.II/dof_renumbering_zorder_02.cc

index fac2b156126efcd7480fa640b32811de404741c9..193e25fbec95f8edb5a767bd549da8ea8fb1e059 100644 (file)
@@ -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 ()
index bb6af0d395cdba2910cae5d2b6bd1a79de166291..e8eae99c9d58419ed3d41b44f27998db09249663 100644 (file)
@@ -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());
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.