From 04f00b629463ced779ef51cd35928901cdbde7f5 Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 11 Jul 2001 11:39:32 +0000 Subject: [PATCH] Fix use of private typedef by using the original type. git-svn-id: https://svn.dealii.org/trunk@4840 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/numerics/error_estimator.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deal.II/deal.II/source/numerics/error_estimator.cc b/deal.II/deal.II/source/numerics/error_estimator.cc index 9d2a56849a..65f5602e62 100644 --- a/deal.II/deal.II/source/numerics/error_estimator.cc +++ b/deal.II/deal.II/source/numerics/error_estimator.cc @@ -58,7 +58,8 @@ namespace const Quadrature<0> * const invalid_face_quadrature = 0; const FunctionMap<1>::type * const invalid_function_map = 0; const std::vector *> * const invalid_solutions = 0; - KellyErrorEstimator<1>::FaceIntegrals * const invalid_face_integrals = 0; + std::map::face_iterator,std::vector > + * const invalid_face_integrals = 0; } -- 2.39.5