Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/ScopedMap.h

    r7f1be01 rccb29b4  
    199199        friend class ScopedMap;
    200200        friend class const_iterator;
    201         typedef typename MapType::iterator wrapped_iterator;
    202         typedef typename ScopeList::size_type size_type;
     201        typedef typename ScopedMap::MapType::iterator wrapped_iterator;
     202        typedef typename ScopedMap::ScopeList scope_list;
     203        typedef typename scope_list::size_type size_type;
    203204
    204205        /// Checks if this iterator points to a valid item
     
    219220        }
    220221
    221         iterator(ScopeList & _scopes, const wrapped_iterator & _it, size_type inLevel)
     222        iterator(scope_list & _scopes, const wrapped_iterator & _it, size_type inLevel)
    222223                : scopes(&_scopes), it(_it), level(inLevel) {}
    223224public:
     
    265266
    266267private:
    267         ScopeList *scopes;
     268        scope_list *scopes;
    268269        wrapped_iterator it;
    269270        size_type level;
Note: See TracChangeset for help on using the changeset viewer.