From 6d5467ef7ddca0147b5ef15d9d171ea44d80dd96 Mon Sep 17 00:00:00 2001 From: hartmann Date: Thu, 30 Jun 2005 09:13:37 +0000 Subject: [PATCH] Add missing typenames. git-svn-id: https://svn.dealii.org/trunk@10978 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/bits/point_inside_1.cc | 3 ++- tests/bits/point_inside_2.cc | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/bits/point_inside_1.cc b/tests/bits/point_inside_1.cc index 4e6024fb09..33786f8c23 100644 --- a/tests/bits/point_inside_1.cc +++ b/tests/bits/point_inside_1.cc @@ -35,7 +35,8 @@ void check () GridGenerator::hyper_cube (triangulation); // Now get the cell - const Triangulation::cell_iterator cell = triangulation.begin(); + const typename Triangulation::cell_iterator + cell = triangulation.begin(); double testcoord[11][3] = {{0.5,0.5,0.5}, {2,0.5,0.5}, diff --git a/tests/bits/point_inside_2.cc b/tests/bits/point_inside_2.cc index 64ee0f5baa..23cecd2527 100644 --- a/tests/bits/point_inside_2.cc +++ b/tests/bits/point_inside_2.cc @@ -45,7 +45,8 @@ void check () GridGenerator::hyper_cube (triangulation); // Now get the cell - Triangulation::cell_iterator cell = triangulation.begin(); + const typename Triangulation::cell_iterator + cell = triangulation.begin(); cell->vertex(0)(0)=-1.; // and test it. -- 2.39.5