From: Wolfgang Bangerth <bangerth@math.tamu.edu>
Date: Mon, 14 Oct 2002 17:59:16 +0000 (+0000)
Subject: Make this work with gcc2.96, part 2.
X-Git-Tag: v8.0.0~17337
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60c0124168c65f558088c71de30d064a11005fa4;p=dealii.git

Make this work with gcc2.96, part 2.


git-svn-id: https://svn.dealii.org/trunk@6648 0785d39b-7218-0410-832d-ea1e28bc413d
---

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<dim>               &dof,
-                       const Quadrature<dim-1>             &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,