From: Wolfgang Bangerth Date: Mon, 6 Feb 2006 21:47:21 +0000 (+0000) Subject: Do what we actually describe in the program. X-Git-Tag: v8.0.0~12435 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63767dcf59964bd0a997c3f001ebd5f414f3ed70;p=dealii.git Do what we actually describe in the program. git-svn-id: https://svn.dealii.org/trunk@12244 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-6/step-6.cc b/deal.II/examples/step-6/step-6.cc index 12c2537784..eb829e9082 100644 --- a/deal.II/examples/step-6/step-6.cc +++ b/deal.II/examples/step-6/step-6.cc @@ -136,8 +136,8 @@ class LaplaceProblem Triangulation triangulation; - FE_Q fe; DoFHandler dof_handler; + FE_Q fe; // This is the new variable in // the main class. We need an @@ -226,8 +226,8 @@ void Coefficient::value_list (const std::vector > &points, // (here ``2''): template LaplaceProblem::LaplaceProblem () : - fe (2), - dof_handler (triangulation) + dof_handler (triangulation), + fe (2) {}