From: bangerth Date: Wed, 27 Jun 2012 21:38:46 +0000 (+0000) Subject: Fix compilation. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95ed7fd09f27e6d859be2316a4cec24c08d0d0db;p=dealii-svn.git Fix compilation. git-svn-id: https://svn.dealii.org/trunk@25654 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fe/mapping_real_to_unit_q4_sphere.cc b/tests/fe/mapping_real_to_unit_q4_sphere.cc index 4b53072d42..7d9ca7b478 100644 --- a/tests/fe/mapping_real_to_unit_q4_sphere.cc +++ b/tests/fe/mapping_real_to_unit_q4_sphere.cc @@ -79,14 +79,14 @@ void test_real_to_unit_cell() // the cell const Point p (-3.56413e+06, 1.74215e+06, 2.14762e+06); MappingQ map(4); - typename Triangulation::active_cell_iterator + Triangulation::active_cell_iterator cell = triangulation.begin_active(); try { map.transform_real_to_unit_cell(cell,p); } - catch (const typename Mapping::ExcTransformationFailed &) + catch (const Mapping::ExcTransformationFailed &) { deallog << "Point is outside!" << std::endl; } diff --git a/tests/fe/mapping_real_to_unit_q4_sphere_x.cc b/tests/fe/mapping_real_to_unit_q4_sphere_x.cc index 5fcdbf2c9d..7e06346c2e 100644 --- a/tests/fe/mapping_real_to_unit_q4_sphere_x.cc +++ b/tests/fe/mapping_real_to_unit_q4_sphere_x.cc @@ -72,13 +72,13 @@ void test_real_to_unit_cell() // the cell const Point p (-3.56413e+06, 1.74215e+06, 2.14762e+06); MappingQ1 map; - typename Triangulation::active_cell_iterator + Triangulation::active_cell_iterator cell = triangulation.begin_active(); try { map.transform_real_to_unit_cell(cell,p); } - catch (const typename Mapping::ExcTransformationFailed &) + catch (const Mapping::ExcTransformationFailed &) { deallog << "Point is outside!" << std::endl; } diff --git a/tests/fe/mapping_real_to_unit_q4_sphere_y.cc b/tests/fe/mapping_real_to_unit_q4_sphere_y.cc index 69f09bc72d..4e7b6dfa5e 100644 --- a/tests/fe/mapping_real_to_unit_q4_sphere_y.cc +++ b/tests/fe/mapping_real_to_unit_q4_sphere_y.cc @@ -72,7 +72,7 @@ void test_real_to_unit_cell() // the cell const Point p (-3.56413e+06, 1.74215e+06, 2.14762e+06); MappingQ1 map; - typename Triangulation::active_cell_iterator + Triangulation::active_cell_iterator cell = triangulation.begin_active(); // the following call will fail