From 3644d6b2c6bb2adac692ad76dd2a7be515bea4b3 Mon Sep 17 00:00:00 2001 From: kronbichler Date: Sun, 17 Aug 2008 23:23:39 +0000 Subject: [PATCH] Since the merge from the anisotropic branch, this program did not work any more because it used GeometryInfo::subfaces_per_cell. This is now replaced by face->n_children(). git-svn-id: https://svn.dealii.org/trunk@16586 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-33/step-33.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/deal.II/examples/step-33/step-33.cc b/deal.II/examples/step-33/step-33.cc index 6790863775..a2672f04a7 100644 --- a/deal.II/examples/step-33/step-33.cc +++ b/deal.II/examples/step-33/step-33.cc @@ -836,7 +836,6 @@ compute_derived_quantities_vector (const std::vector > for (unsigned int q=0; q::assemble_system () cell->neighbor_of_neighbor(face_no); for (unsigned int subface_no=0; - subface_no::subfaces_per_face; + subface_no < cell->face(face_no)->n_children(); ++subface_no) { const typename DoFHandler::active_cell_iterator -- 2.39.5