From: bangerth Date: Thu, 16 Dec 2010 23:28:02 +0000 (+0000) Subject: Fix missing std:: X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17fd78ac25155bfd0ed7f3c31121096d6e88c4c6;p=dealii-svn.git Fix missing std:: git-svn-id: https://svn.dealii.org/trunk@22986 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/codim_one/gradients_1.cc b/tests/codim_one/gradients_1.cc index 9a38dadbfa..3a36a6831f 100644 --- a/tests/codim_one/gradients_1.cc +++ b/tests/codim_one/gradients_1.cc @@ -96,7 +96,7 @@ void test(std::string filename, unsigned int degree = 1) quad, the_function, projected_one); deallog << "L2 norm of projected vector: " - << projected_one.l2_norm() << endl; + << projected_one.l2_norm() << std::endl; // compute the H1 difference @@ -105,7 +105,7 @@ void test(std::string filename, unsigned int degree = 1) the_function, difference_per_cell, quad, VectorTools::H1_norm); - deallog << "H1 error: " << difference_per_cell.l2_norm() << endl; + deallog << "H1 error: " << difference_per_cell.l2_norm() << std::endl; }