From 371f0e8947b07f7de629fa318262788ae2e0ee8c Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 29 Sep 2011 15:42:10 +0000 Subject: [PATCH] Make include path future proof. git-svn-id: https://svn.dealii.org/trunk@24467 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/codim_one/mapping_03.cc | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tests/codim_one/mapping_03.cc b/tests/codim_one/mapping_03.cc index 00695c3075..9aacebe4e4 100644 --- a/tests/codim_one/mapping_03.cc +++ b/tests/codim_one/mapping_03.cc @@ -18,15 +18,15 @@ #include "../tests.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include template @@ -40,19 +40,19 @@ void test (unsigned int degree) Point p; // Try to project a point on the - // surface + // surface for(unsigned int i=0; i q = mapping.transform_real_to_unit_cell(mesh.begin_active(), p); deallog << "Mapping Q("<< degree<< "): P: " << p << ", on unit: " << q << std::endl; - + } - + int main () { @@ -62,7 +62,7 @@ int main () test<2> (1); test<2> (2); - + test<3> (1); test<3> (2); -- 2.39.5