From: bangerth Date: Sun, 28 Dec 2008 04:35:46 +0000 (+0000) Subject: Do another cast to placate gcc3.3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38f60c1055d2882986ab1dbc892b603c65b52a8e;p=dealii-svn.git Do another cast to placate gcc3.3 git-svn-id: https://svn.dealii.org/trunk@18035 0785d39b-7218-0410-832d-ea1e28bc413d --- 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());