From 7d240a72e03a66966abb8b97336a1bbe99c8c1b2 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 16 Dec 2010 23:28:02 +0000 Subject: [PATCH] Fix missing std:: git-svn-id: https://svn.dealii.org/trunk@22986 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/codim_one/gradients_1.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.5