Changeset 4c2e561 for src/Common


Ignore:
Timestamp:
Jul 4, 2023, 4:29:10 PM (2 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
3430ce8
Parents:
3397eed (diff), 7f1be01 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/ScopedMap.h

    r3397eed r4c2e561  
    199199        friend class ScopedMap;
    200200        friend class const_iterator;
    201         typedef typename ScopedMap::MapType::iterator wrapped_iterator;
    202         typedef typename ScopedMap::ScopeList scope_list;
    203         typedef typename scope_list::size_type size_type;
     201        typedef typename MapType::iterator wrapped_iterator;
     202        typedef typename ScopeList::size_type size_type;
    204203
    205204        /// Checks if this iterator points to a valid item
     
    220219        }
    221220
    222         iterator(scope_list & _scopes, const wrapped_iterator & _it, size_type inLevel)
     221        iterator(ScopeList & _scopes, const wrapped_iterator & _it, size_type inLevel)
    223222                : scopes(&_scopes), it(_it), level(inLevel) {}
    224223public:
     
    266265
    267266private:
    268         scope_list *scopes;
     267        ScopeList *scopes;
    269268        wrapped_iterator it;
    270269        size_type level;
Note: See TracChangeset for help on using the changeset viewer.