From: Wolfgang Bangerth Date: Thu, 16 Dec 2010 23:28:02 +0000 (+0000) Subject: Fix missing std:: X-Git-Tag: v8.0.0~4673 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d240a72e03a66966abb8b97336a1bbe99c8c1b2;p=dealii.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; }