From fad4f2d5311d3a2929eca66664ea065bb241fc56 Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 14 Oct 2002 17:59:16 +0000 Subject: [PATCH] Make this work with gcc2.96, part 2. git-svn-id: https://svn.dealii.org/trunk@6648 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/numerics/error_estimator.h | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/deal.II/deal.II/include/numerics/error_estimator.h b/deal.II/deal.II/include/numerics/error_estimator.h index 3921770241..40a78192fe 100644 --- a/deal.II/deal.II/include/numerics/error_estimator.h +++ b/deal.II/deal.II/include/numerics/error_estimator.h @@ -505,9 +505,9 @@ class KellyErrorEstimator /** * Constructor. */ - PerThreadData (const DoFHandler &dof, - const Quadrature &quadrature, - const unsigned int n_solution_vectors); + PerThreadData (const unsigned int n_solution_vectors, + const unsigned int n_components, + const unsigned int n_q_points); }; @@ -617,11 +617,6 @@ class KellyErrorEstimator /* -------------- declaration of explicit specializations ------------- */ -template <> KellyErrorEstimator<1>::PerThreadData::PerThreadData( - const DoFHandler<1> &, - const Quadrature<0> &, - const unsigned int); - template <> void KellyErrorEstimator<1>::estimate_some ( const Mapping<1> &mapping, const DoFHandler<1> &dof_handler, -- 2.39.5