From: wolf Date: Wed, 22 Dec 1999 16:38:28 +0000 (+0000) Subject: Change order of member variables to prevent a Subscriptor from X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3924474df4f56899cb2f88d7e541d948e5a4063a;p=dealii-svn.git Change order of member variables to prevent a Subscriptor from triggering upon destruction of the FE. git-svn-id: https://svn.dealii.org/trunk@2110 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/Attic/examples/step-by-step/step-3/step-3.cc b/deal.II/deal.II/Attic/examples/step-by-step/step-3/step-3.cc index 1a6137ee8d..d7af7b01fe 100644 --- a/deal.II/deal.II/Attic/examples/step-by-step/step-3/step-3.cc +++ b/deal.II/deal.II/Attic/examples/step-by-step/step-3/step-3.cc @@ -120,8 +120,8 @@ class LaplaceProblem // and the numbering of the // degrees of freedom... Triangulation<2> triangulation; - DoFHandler<2> dof_handler; FEQ1<2> fe; + DoFHandler<2> dof_handler; // ...variables for the sparsity // pattern and values of the diff --git a/deal.II/examples/step-3/step-3.cc b/deal.II/examples/step-3/step-3.cc index 1a6137ee8d..d7af7b01fe 100644 --- a/deal.II/examples/step-3/step-3.cc +++ b/deal.II/examples/step-3/step-3.cc @@ -120,8 +120,8 @@ class LaplaceProblem // and the numbering of the // degrees of freedom... Triangulation<2> triangulation; - DoFHandler<2> dof_handler; FEQ1<2> fe; + DoFHandler<2> dof_handler; // ...variables for the sparsity // pattern and values of the