From: Wolfgang Bangerth Date: Wed, 11 Jul 2001 11:39:32 +0000 (+0000) Subject: Fix use of private typedef by using the original type. X-Git-Tag: v8.0.0~18958 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edb20f521d76b94e5d1f688ed525761e46524962;p=dealii.git Fix use of private typedef by using the original type. git-svn-id: https://svn.dealii.org/trunk@4840 0785d39b-7218-0410-832d-ea1e28bc413d --- 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; }