Changeset 2a301ff for src/Common/ScopedMap.h
- Timestamp:
- Aug 31, 2023, 11:31:15 PM (2 years ago)
- Branches:
- master
- Children:
- 950c58e
- Parents:
- 92355883 (diff), 686912c (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/ScopedMap.h
r92355883 r2a301ff 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.