Georg Baum wrote:
> typename cache_type::const_iterator it ...

This works.

Index: src/CoordCache.h
===================================================================
--- src/CoordCache.h    (Revision 20461)
+++ src/CoordCache.h    (Arbeitskopie)
@@ -108,7 +108,7 @@

        bool covers(T const * thing, int x, int y) const
        {
-               cache_type::const_iterator it = data_.find(thing);
+               typename cache_type::const_iterator it = data_.find(thing);
                return it != data_.end() && it->second.covers(x, y);
        }


Jürgen

Reply via email to