Changeset 7f1be01 for src/Common
- Timestamp:
 - Jul 4, 2023, 2:54:31 PM (2 years ago)
 - Branches:
 - master
 - Children:
 - 4c2e561
 - Parents:
 - b2ecd48
 - File:
 - 
      
- 1 edited
 
- 
          
  src/Common/ScopedMap.h (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
src/Common/ScopedMap.h
rb2ecd48 r7f1be01 199 199 friend class ScopedMap; 200 200 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; 204 203 205 204 /// Checks if this iterator points to a valid item … … 220 219 } 221 220 222 iterator( scope_list & _scopes, const wrapped_iterator & _it, size_type inLevel)221 iterator(ScopeList & _scopes, const wrapped_iterator & _it, size_type inLevel) 223 222 : scopes(&_scopes), it(_it), level(inLevel) {} 224 223 public: … … 266 265 267 266 private: 268 scope_list *scopes;267 ScopeList *scopes; 269 268 wrapped_iterator it; 270 269 size_type level;  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.