From: wolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Date: Mon, 23 Oct 2000 14:44:56 +0000 (+0000)
Subject: Avoid a problem with types that are sometimes undefined and
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ad1e3348abbdef7192ec0e88aee4de424380a7b;p=dealii-svn.git

Avoid a problem with types that are sometimes undefined and
incomprehensible error messages resulting from that.


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

diff --git a/deal.II/deal.II/include/grid/intergrid_map.h b/deal.II/deal.II/include/grid/intergrid_map.h
index 788d472d4e..527e6a0579 100644
--- a/deal.II/deal.II/include/grid/intergrid_map.h
+++ b/deal.II/deal.II/include/grid/intergrid_map.h
@@ -118,6 +118,12 @@ class InterGridMap
 					 // warning about non-default
 					 // constructor of GridClass
 	GridClass_dim ();
+
+					 /**
+					  * Declare iterator type, for
+					  * access from outside.
+					  */
+	typedef typename GridClass<dim>::cell_iterator cell_iterator;
     };
     
 				     /**