From 63767dcf59964bd0a997c3f001ebd5f414f3ed70 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 6 Feb 2006 21:47:21 +0000 Subject: [PATCH] Do what we actually describe in the program. git-svn-id: https://svn.dealii.org/trunk@12244 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-6/step-6.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) {} -- 2.39.5