From 38f60c1055d2882986ab1dbc892b603c65b52a8e Mon Sep 17 00:00:00 2001 From: bangerth Date: Sun, 28 Dec 2008 04:35:46 +0000 Subject: [PATCH] Do another cast to placate gcc3.3 git-svn-id: https://svn.dealii.org/trunk@18035 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/grid/tria_accessor.templates.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/deal.II/include/grid/tria_accessor.templates.h b/deal.II/deal.II/include/grid/tria_accessor.templates.h index e74cc05a76..690c206062 100644 --- a/deal.II/deal.II/include/grid/tria_accessor.templates.h +++ b/deal.II/deal.II/include/grid/tria_accessor.templates.h @@ -1350,8 +1350,8 @@ isotropic_child_index (const unsigned int i) const return child_index (i); case 2: { - const RefinementCase<2> this_refinement_case = - static_cast >(refinement_case()); + const RefinementCase<2> + this_refinement_case (static_cast(refinement_case())); Assert (this_refinement_case != RefinementCase<2>::no_refinement, TriaAccessorExceptions::ExcCellHasNoChildren()); @@ -1456,8 +1456,8 @@ isotropic_child (const unsigned int i) const case 2: { - const RefinementCase<2> this_refinement_case = - static_cast >(refinement_case()); + const RefinementCase<2> + this_refinement_case (static_cast(refinement_case())); Assert (this_refinement_case != RefinementCase<2>::no_refinement, TriaAccessorExceptions::ExcCellHasNoChildren()); -- 2.39.5