From: wolf Date: Wed, 16 Oct 2002 21:29:02 +0000 (+0000) Subject: Fix clear bogosities. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=306cc81628ad82b07c93cb3dfef80cb3ba674159;p=dealii-svn.git Fix clear bogosities. git-svn-id: https://svn.dealii.org/trunk@6667 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-14/step-14.cc b/deal.II/examples/step-14/step-14.cc index 99942ed22c..e27baacf73 100644 --- a/deal.II/examples/step-14/step-14.cc +++ b/deal.II/examples/step-14/step-14.cc @@ -2824,7 +2824,7 @@ namespace LaplaceSolver WeightedResidual::output_solution () const { const PrimalSolver &primal_solver = *this; - const PrimalSolver &dual_solver = *this; + const DualSolver &dual_solver = *this; ConstraintMatrix primal_hanging_node_constraints; DoFTools::make_hanging_node_constraints (primal_solver.dof_handler, @@ -2889,7 +2889,7 @@ namespace LaplaceSolver estimate_error (Vector &error_indicators) const { const PrimalSolver &primal_solver = *this; - const PrimalSolver &dual_solver = *this; + const DualSolver &dual_solver = *this; // The first task in computing // the error is to set up vectors @@ -3093,7 +3093,7 @@ namespace LaplaceSolver FaceIntegrals &face_integrals) const { const PrimalSolver &primal_solver = *this; - const PrimalSolver &dual_solver = *this; + const DualSolver &dual_solver = *this; // At the beginning, we // initialize two variables for